youtube-code/2022-10-10-6-Coding-Concepts-You-MUST-Know-For-Beginners/while-loops.py
2022-11-05 14:07:34 +00:00

5 lines
No EOL
41 B
Python

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