Python Énumération commence à 1

iterable = [1,2,3]

for index, item in enumerate(iterable, start=1):
    print(index, ':', item)
The Great Carlos