for index and value in list python code example
Example 1: python3 iterate through indexes
items=['baseball','basketball','football']
for index, item in enumerate(items):
print(index, item)
Example 2: for loop with index python3
colors = ["red", "green", "blue", "purple"]
for i in range(len(colors)):
print(colors[i])
Example 3: python index of item in list
list.index(element)
Example 4: python index list in list
>>> list1 = [[10,13,17],[3,5,1],[13,11,12]]
>>> list1[0][2]
17