Page 46 - Modular v1.1 Pyhton
P. 46

To come out of the infinite loop, we can either close the program window or press Ctrl + C. This

                  will break the running of the program. In fact, at any time during the execution of a program in
                  Python, you can press the key combination Ctrl + C to stop running the program.

                  The while Loop using else Statement

                  Python enables the use of else statement with the while loop. The else block is executed when
                  the condition given in the while statement becomes false.


                  Program 6: To demonstrate the use of while loop with else statement.















                  On running the above program, you will get the following output:




















                      THE JUMP STATEMENTS

                  Sometimes, there is a situation when the control of the program needs to be transferred out of

                  the loop body, even if all the values of the iterations of the loop have not been completed. For
                  this purpose, jumping statements are used in Python. Python offers two jumping statements—
                  break and continue, which are used within the loop.

                  The break Statement


                  The break is a keyword in Python which is used for bringing the program control out of the loop.
                  The break statement halts the execution of a loop and program flow switches to the statement
                  after the loop. A single break statement will break out of only one loop.

                  Syntax:

                  #loop statement
                      break

                   44     Touchpad MODULAR (Version 1.0)
   41   42   43   44   45   46   47   48   49   50   51