python-CSD-kursu/while-1.py
2023-05-20 07:35:20 +03:00

5 lines
44 B
Python

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