Gamme python itérer par 2
for i in range(0,10,2):
print(i)
Cooperative Crab
for i in range(0,10,2):
print(i)
for c in range (0, 10, -7):
print(c)