for item index 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 in list start with index python

for item in some_list[2:]:
    # do stuff

#This will start at the third element and iterate to the end.

Example 3: 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))