Run
myList = ['apple', 'banana', 'mango', 'cherry'] enumeratedList = enumerate(myList, start=-10) for item in enumeratedList: print(item)
Output