Démarrer l'index à partir de 1 en python
days = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]
for index,day in enumerate(days):
#this will convert index starting from 0 to 1
if index >= 0: index += 1
print(index, day)
Programmer of empires