0
whats the answer?
How many numbers does this code print? i = 5 while True: print(i) i = i - 1 if i <= 2: break
2 Answers
+ 6
To get the answer, you can use playground. Run the code there, and you will have the answer. đ
+ 1
Four numbers:
5
4
3
2