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

6 lines
63 B
Python

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