python-CSD-kursu/while-2.py

6 lines
63 B
Python
Raw Normal View History

2023-05-20 07:35:20 +03:00
i = 0
while i < 10:
print(i, end = ' ')
i += 1
print()