What happens when the code above is executed?
i = 5 while i: if i % 2 == 0: break i -= 1
An infinite loop occurs.
The loop terminates when i becomes 4.
i
The numbers from 5 to 1 are printed.
The loop breaks immediately.