the-honk/gcse computer science/year 9/python/python challenges/16 - Print 1 to 10.py
2021-05-28 21:38:55 +01:00

2 lines
No EOL
36 B
Python

for i in range(10):
print(i + 1)