fruits = ['Banana', 'Apple', 'Lime'] list(enumerate(fruits)) # Output # [(0, 'Banana'), (1, 'Apple'), (2, 'Lime')]