python-CSD-kursu/while-3.py

7 lines
66 B
Python
Raw Normal View History

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