beginner-coding-concepts/while-loops.py

5 lines
41 B
Python
Raw Permalink Normal View History

2024-10-04 13:32:55 +00:00
i = 1
while i <= 5:
print(i)
i = i + 1