Ajouter dans une boucle Python pour
a=[]
for i in range(5):
a.append(i)
a # the list with the new items.
Maxwell
a=[]
for i in range(5):
a.append(i)
a # the list with the new items.