Ajouter en boucle pour répertorier Python

a=[]
for i in range(5):    
    a.append(i)
print(a)
# [0, 1, 2, 3, 4]
SuperUnknown Python