Computer Science, asked by GPGAMER9128, 2 months ago

Use of 'break' in python.​

Answers

Answered by pratyushojha20
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