python-CSD-kursu/python/while_example.py
2024-06-09 19:06:32 +03:00

5 lines
45 B
Python

i = 0
while i < 10:
print(i)
i += 1