+1 vote
in Python by
When Should You Use The “Break” In Python?

1 Answer

0 votes
by

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.

Related questions

0 votes
asked Dec 22, 2019 in Python by rajeshsharma
0 votes
asked Jan 2, 2021 in Python by SakshiSharma
...