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

6 lines
66 B
Python

i = 0
while i < 0:
print(i)
i += 1
else:
print('son')