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

5 lines
63 B
Python

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