python-CSD-kursu/python/while_example.py

5 lines
45 B
Python

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