boucle python via la liste
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
Grepper
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
for i in range(len(Latitudes)):
Lat,Long=(Latitudes[i],Longitudes[i])
# Python3 code to iterate over a list
list = [1, 3, 5, 7, 9]
# Using for loop
for i in list:
print(i)