2.16LOOP CONTROL STATEMENTS
Loop control statements change the execution from its normal sequence. When the execution leaves a scope, all automatic objects that were created in that scope are destroyed.
Python supports the following control statements. Let us go through the loop control statements briefly.
Table 2.9 Examples of loop control statements
| Sr. No. | Control Statement & Description |
| 1 | Break statement Terminates the loop statement and transfers execution to the statement immediately following the loop. |
| 2 | continue statement It causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating. |
| 3 | pass statement The pass statement in Python is used when a statement is required syntactically, but you do not want any command or code to execute. |
An example of a break statement program is shown below.

OUTPUT
