for loop python array length code example
Example 1: python3 iterate through indexes
items=['baseball','basketball','football']
for index, item in enumerate(items):
print(index, item)
Example 2: how to loop the length of an array pytoh
array = range(10)
for i in range(len(array)):
print(array[i])