csc-python-solutions/07/c/1 - Countup.py

6 lines
62 B
Python
Raw Normal View History

2021-02-18 17:55:58 +00:00
x = 1
while x <= 10:
print(x)
x += 1
print("Blastoff!")