traverse array python using index code example
Example 1: python iterate with index
for index, item in enumerate(iterable, start=1):
print index, item
Example 2: python for loop array index
colors = ["red", "green", "blue", "purple"]
i = 0
while i < len(colors):
print(colors[i])
i += 1