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

5 lines
44 B
Python
Raw Normal View History

2023-05-20 07:35:20 +03:00
i = 0
while i < 10:
print(i)
i += 1