list.index(x[, start[, end]])
Return zero-based index in the list of the first item whose value is equal to x. Raises a ValueError if there is no such item.
The optional arguments start and end are interpreted as in the slice notation and are used to limit the search to a particular subsequence of the list. The returned index is computed relative to the beginning of the full sequence rather than the start argument.
for i_row, row in enumerate(grid): # row == grid[i_row]
for i_col, value in enumerate(row): # value == row[i_col]
# далее сам
d_list
на 100.000 у меня выполнилось за 0.6868....res = []
for dictionary in d_list: # * 100_000:
result_dict = {}
for key in dictionary:
if dictionary[key] is not None:
result_dict[key] = dictionary[key]
result_dict = {**result_dict, **{'qty1': False, 'fp1': False,
'qty2': False, 'fp2': False,
'qty3': False, 'fp3': False}}
if isinstance(dictionary['b'], list):
for z in range(1, len(dictionary['b']) - 1):
result_dict[f'qty{z}'] = dictionary['b'][z - 1]['qty']
result_dict[f'fp{z}'] = dictionary['b'][z - 1]['fp']
res.append(result_dict)
b
в исходном виде.res = []
for dictionary in d_list: # * 100_000:
result_dict = {'a': dictionary['a'],
'c': dictionary['c'],
'qty1': False, 'fp1': False,
'qty2': False, 'fp2': False,
'qty3': False, 'fp3': False
}
if isinstance(dictionary['b'], list):
for z in range(1, len(dictionary['b']) - 1):
result_dict[f'qty{z}'] = dictionary['b'][z - 1]['qty']
result_dict[f'fp{z}'] = dictionary['b'][z - 1]['fp']
res.append(result_dict)
a = [1, 2, 3]
b = [1, 2, 3]
print(a == b) # True - списки имеют одинаковое содержимое
print(a is b) # False - a и b ссылаются на разные объекты-списки, а не на один и тот же.
a = 1
b = 1.0
print(isinstance(a, int), isinstance(a, float)) # True False - a это int, но не float
print(isinstance(b, int), isinstance(b, float)) # False True - b это не int, это float
print(isinstance(a, (int, float))) # True - a является чем-то из двух: или int, или float
@font-face {
font-family: "pragmatica";
font-display: swap;
src: url("fonts/pragmatica.woff2") format("woff2"),
url("fonts/pragmatica.woff") format("woff");
font-weight: 400;
}