Utilisez Len avec List
#i will print out first choice, but len specifies length
#and range specifies total emcompassed length.
students = ["Hermione", "Harry", "Ron"]
for i in range(len(students)):
print(students[i])
Outstanding Opossum