wei/unit_7/counting.py

4 lines
96 B
Python

current_number = 1
while current_number <= 10:
print(current_number)
current_number += 1