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 Antworten
+ 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
How many numbers does this code print? i = 5 while True: print(i) i = i - 1 if i <= 2: break