python-CSD-kursu/python/while_example.py

6 lines
45 B
Python

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