python list loop index 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 for loop with index

colors = ["red", "green", "blue", "purple"]
for i in range(len(colors)):
    print(colors[i])

Example 4: 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 5: iterating with index in for loops python

colors = ["red", "green", "blue", "purple"]
ratios = [0.2, 0.3, 0.1, 0.4]
for color, ratio in zip(colors, ratios):
    print("{}% {}".format(ratio * 100, color))

Example 6: python for loop array index

colors = ["red", "green", "blue", "purple"]
i = 0
while i < len(colors):
    print(colors[i])
    i += 1