↻
⏵︎ Run
fruits = ['apple', 'banana', 'mango', 'cherry'] for index, fruit in enumerate(fruits, start=1): print(index, ':', fruit)
Output