Run
myList = ['apple', 'banana', 'cherry'] for index, item in enumerate(myList): print(index, item)
Output