Google News
logo
Python - Interview Questions
When should you use the “break” in Python?
Python provides a break statement to exit from a loop. Whenever the break hits in the code, the control of the program immediately exits from the body of the loop.
 
The break statement in a nested loop causes the control to exit from the inner iterative block.
Advertisement