somme python du tableau jusqu'à l'index
def sum_up_to_index(lst, index):
return sum(lst[:index])
Powerful Penguin
def sum_up_to_index(lst, index):
return sum(lst[:index])