5 lines
71 B
Python
5 lines
71 B
Python
numbers = list(range(1, 21))
|
|
|
|
for number in numbers:
|
|
print(number)
|