comment boucle la longueur d'un tableau pytoh

array = range(10)
for i in range(len(array)):
  print(array[i])
Expensive Eagle