Computer Science

What abandons the current iteration of the loop?

  1. continue
  2. break
  3. stop
  4. infinite

Python Control Flow

3 Likes

Answer

break

Reason — The break statement terminates the current loop, i.e., the loop in which it appears, and resumes execution at the next statement immediately after the end of that loop.

Answered By

1 Like


Related Questions