Comment vérifier si l'index est hors de portée python
if index >= 0 and index < len(list)
Red Team
if index >= 0 and index < len(list)
def double_index(lst, index):
try:
lst[index] = lst[index] * 2
except IndexError:
return lst