Двойной значение в списке Python
def double_index(lst, index):
for i in range(len(lst)):
if index >= len(lst):
return lst
elif index == i:
lst[i] = lst[i]**2
return lst
else:
continue
i += 1
Magnificent Meerkat