python-CSD-kursu/python/while_example.py

6 lines
45 B
Python
Raw Normal View History

2024-06-09 19:06:32 +03:00
i = 0
while i < 10:
print(i)
i += 1