LearningPy/main.py
2022-11-30 18:57:25 +00:00

8 lines
91 B
Python

#Test While else
x = 0
while x < 10:
print(x)
x += 1
else:
print("Bye")