Python While LoopsIn coding, loops are designed to execute a specified code block repeatedly. We'll learn how to construct a while loop in Python, the syntax of a while loop, loop controls like break and continue, and other exercises in this tutorial. Introduction of Python While LoopIn this article, we are discussing while loops in Python. The Python while loop iteration of a code block is executed as long as the given Condition, i.e., conditional_expression, is true. If we don't know how many times we'll execute the iteration ahead of time, we can write an indefinite loop. Syntax of Python While Loop Now, here we discuss the syntax of the Python while loop. The syntax is given below - The given condition, i.e., conditional_expression, is evaluated initially in the Python while loop. Then, if the conditional expression gives a boolean value True, the while loop statements are executed. The conditional expression is verified again when the complete code block is executed. This procedure repeatedly occurs until the conditional expression returns the boolean value False.
ExampleNow we give some examples of while Loop in Python. The examples are given in below - Program code 1: Now we give code examples of while loops in Python for printing numbers from 1 to 10. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - 1 2 3 4 5 6 7 8 9 10 Program Code 2: Now we give code examples of while loops in Python for Printing those numbers divisible by either 5 or 7 within 1 to 50 using a while loop. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - 5 7 10 14 15 20 21 25 28 30 35 40 42 45 49 50 Program Code: Now we give code examples of while loops in Python, the sum of squares of the first 15 natural numbers using a while loop. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - The sum of squares is 1240 Provided that our counter parameter i gives boolean true for the condition, i less than or equal to num, the loop repeatedly executes the code block i number of times. Next is a crucial point (which is mostly forgotten). We have to increment the counter parameter's value in the loop's statements. If we don't, our while loop will execute itself indefinitely (a never-ending loop). Finally, we print the result using the print statement. Exercises of Python While LoopPrime Numbers and Python While LoopUsing a while loop, we will construct a Python program to verify if the given integer is a prime number or not. Program Code: Now we give code examples of while loops in Python for a number is Prime number or not. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - 34 is not a PRIME number 12 is not a PRIME number 54 is not a PRIME number 23 is a PRIME number 75 is not a PRIME number 34 is not a PRIME number 11 is a PRIME number 2. Armstrong and Python While LoopWe will construct a Python program using a while loop to verify whether the given integer is an Armstrong number. Program Code: Now we give code examples of while loops in Python for a number is Armstrong number or not. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - 342 It is not an Armstrong number Multiplication Table using While LoopIn this example, we will use the while loop for printing the multiplication table of a given number. Program Code: In this example, we will use the while loop for printing the multiplication table of a given number. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - The Multiplication Table of: 21 21 x 1 = 21 21 x 2 = 42 21 x 3 = 63 21 x 4 = 84 21 x 5 = 105 21 x 6 = 126 21 x 7 = 147 21 x 8 = 168 21 x 9 = 189 21 x 10 = 210 Python While Loop with ListProgram Code 1: Now we give code examples of while loops in Python for square every number of a list. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - [36, 16, 1, 25, 9] In the preceding example, we execute a while loop over a given list of integers that will repeatedly run if an element in the list is found. Program Code 2: Now we give code examples of while loops in Python for determine odd and even number from every number of a list. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - It is an odd number It is an even number It is an even number It is an even number It is an even number It is an odd number It is an odd number It is an even number Program Code 3: Now we give code examples of while loops in Python for determine the number letters of every word from the given list. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - 5 4 3 2 Python While Loop Multiple ConditionsWe must recruit logical operators to combine two or more expressions specifying conditions into a single while loop. This instructs Python on collectively analyzing all the given expressions of conditions. We can construct a while loop with multiple conditions in this example. We have given two conditions and a and keyword, meaning the Loop will execute the statements until both conditions give Boolean True. Program Code: Now we give code examples of while loops in Python for multiple condition. The code is given below - Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - (15, -9) (13, -6) (11, -3) Let's look at another example of multiple conditions with an OR operator. Code Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - (15, -9) (13, -6) (11, -3) (9, 0) (7, 3) (5, 6) We can also group multiple logical expressions in the while loop, as shown in this example. Code Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - Number of iterations: 0 Number of iterations: 1 Number of iterations: 2 Number of iterations: 3 Single Statement While LoopSimilar to the if statement syntax, if our while clause consists of one statement, it may be written on the same line as the while keyword. Here is the syntax and example of a one-line while clause - Loop Control StatementsNow we will discuss the loop control statements in detail. We will see an example of each control statement. Continue StatementIt returns the control of the Python interpreter to the beginning of the loop. Code Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - Output: Current Letter: W Current Letter: h Current Letter: l Current Letter: Current Letter: L Current Letter: p Current Letter: s Break StatementIt stops the execution of the loop when the break statement is reached. Code Output: Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - Current Letter: P Current Letter: y Current Letter: t Current Letter: h Current Letter: o Pass StatementPass statements are used to create empty loops. Pass statement is also employed for classes, functions, and empty control statements. Code Now we compile the above code in python, and after successful compilation, we run it. Then the output is given below - Output: The Last Letter of given string is: s Next TopicPython break statement |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India