csc-python-solutions/07/c/1 - Countup.py
2021-02-18 18:55:58 +01:00

6 lines
62 B
Python

x = 1
while x <= 10:
print(x)
x += 1
print("Blastoff!")