What does 'break' mean in Python?

What does ‘break’ mean in Python?

Hello Dipen-soni,

The ‘break’ statement terminates the loop immediately, and the control flows to the statement after the body of the loop.