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

5 lines
44 B
Python

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