Python Print Nombres 1 à 10 en une seule ligne
for i in range(1, 11):
print(i, end=' ')
wolf-like_hunter
for i in range(1, 11):
print(i, end=' ')