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

5 lines
44 B
Python
Raw Normal View History

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