beginner-coding-concepts/while-loops.py
2024-10-04 14:32:55 +01:00

5 lines
No EOL
41 B
Python

i = 1
while i <= 5:
print(i)
i = i + 1