python-CSD-kursu/python-temel/while-2.py

6 lines
63 B
Python

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