for item with index in python code example
Example 1: python how to get index in for loop
index = 0
foods = ["burger", "pizza", "apple", "donut", "coconut"]
for food in foods:
print("Food", index, "is", food)
index += 1
foods = ["burger", "pizza", "apple", "donut", "coconut"]
for index, value in enumerate(foods):
print("Food", index, "is", value)
Example 2: for loop with index python
presidents = ["Washington", "Adams", "Jefferson", "Madison", "Monroe", "Adams", "Jackson"]
for i in range(len(presidents)):
print("President {}: {}".format(i + 1, presidents[i]))