What is the output of the following? i = 1 while True: if i%2 == 0: break print(i) i += 2
Answers
Answered by
0
Answer:
Null
Because 1%2 is not equal to 0 and it get stuck at infinity loop.
Similar questions