Python pour la boucle avec incrément

lis = [1, 2, 3, 4, 5]
for i in range(len(lis)):
  print(lis[i])
  i+=1
Nasty Narwhal