Use of 'break' in python.
Answers
Answered by
1
The break is a keyword in python which is used to bring the program control out of the loop. The break statement breaks the loops one by one, i.e., in the case of nested loops, it breaks the inner loop first and then proceeds to outer loops.
Explanation:
This is the explanation
Similar questions