Python while loop
The while loop is also known as a pre-tested loop. In general, a while loop allows a part of the code to be executed as long as the given condition is true. It can be viewed as a repeating if statement. The while loop is mostly used in the case where the number of iterations is not known in advance. The syntax is given below.
Here, the statements can be a single statement or the group of statements. The expression should be any valid python expression resulting into true or false. The true is any non-zero value. Example 1
Output: 1 2 3 4 5 6 7 8 9 10 Example 2
Output: Enter the number?10 10 X 1 = 10 10 X 2 = 20 10 X 3 = 30 10 X 4 = 40 10 X 5 = 50 10 X 6 = 60 10 X 7 = 70 10 X 8 = 80 10 X 9 = 90 10 X 10 = 100 Infinite while loopIf the condition given in the while loop never becomes false then the while loop will never terminate and result into the infinite while loop. Any non-zero value in the while loop indicates an always-true condition whereas 0 indicates the always-false condition. This type of approach is useful if we want our program to run continuously in the loop without any disturbance. Example 1
Output: Hi! we are inside the infinite while loop (infinite times) Example 2
Output: Enter the number?102 Entered value is 102 Enter the number?102 Entered value is 102 Enter the number?103 Entered value is 103 Enter the number?103 (infinite loop) Using else with Python while loopPython enables us to use the while loop with the while loop also. The else block is executed when the condition given in the while statement becomes false. Like for loop, if the while loop is broken using break statement, then the else block will not be executed and the statement present after else block will be executed. Consider the following example.
Output: 1 2 3 4 5 The while loop exhausted Example 2
Output: 1 2 |