loop through list with index python code example
Example 1: python3 iterate through indexes
items=['baseball','basketball','football']
for index, item in enumerate(items):
print(index, item)
Example 2: python gt index in for cycle
my_list = [0,1,2,3,4]
for idx, val in enumerate(my_list):
print('{0}: {1}'.format(idx,val))
#This will print:
#0: 0
#1: 1
#2: 2
#...
Example 3: how to loop the length of an array pytoh
array = range(10)
for i in range(len(array)):
print(array[i])
Example 4: python iterate with index
for index, item in enumerate(iterable, start=1):
print index, item
Example 5: how to iterate over a list in python with index
# Create the list
my_list = [1, 2, 3]
# Python automatically creates an index for you and increments it for you
for index in range(len(my_list)):
print(my_list[index])
Example 6: iterate array python with index
for header, rows in zip(headers, columns):
print("{}: {}".format(header, ", ".join(rows)))