Presentation is loading. Please wait.

Presentation is loading. Please wait.

LOOP Basics.

Similar presentations


Presentation on theme: "LOOP Basics."— Presentation transcript:

1 LOOP Basics

2 INTRODUCTION Programming languages provide various control structures that allow for more complicated execution paths. Statements are executed sequentially: The first statement in a function is executed first, followed by the second, and so on. A loop statement allows us to execute a statement or group of statements multiple times.

3 The following diagram illustrates a loop statement −

4 WHILE LOOP FOR LOOP NESETED LOOP
Python programming language provides following types of loops to handle looping requirements. WHILE LOOP FOR LOOP NESETED LOOP

5 WHILE LOOP A while loop statement in Python programming language repeatedly executes a target statement as long as a given condition is true. Syntax The syntax of a while loop in Python programming language is − While < logical expression> : statement(s) statement(s) may be a single statement or a block of statements. The condition may be any expression, and true is any non-zero value. The loop iterates while the condition is true.

6 When the condition becomes false, program control passes to the line immediately following the loop.
In Python, all the statements indented by the same number of character spaces after a programming construct are considered to be part of a single block of code. Python uses indentation as its method of grouping statements. Flow Diagram  Example:- a=5 While a>0: print(“hello”,a) a=a-3 Print(“loop over”) The above code will print- hello 5 hello 2 loop over

7 The Infinite Loop A loop becomes infinite loop if a condition never becomes FALSE. You must use caution when using while loops because of the possibility that this condition never resolves to a FALSE value. This results in a loop that never ends. Such a loop is called an infinite loop. Ex a=1 While a>1: a=a+1 Print(a) This will show result infinite times To stop infinite loop press ctrl+c during its endless repetition

8 FOR LOOP It has the ability to iterate over the items of any sequence, such as a list or a string. Syntax >>>for <variable> in <sequence>: statements_to_repeat Colon must be there

9 Flow diagram  For a in Range(1,4,7): Print(a) Print(a*a)
This will give result as follows: 1 4 16 7 49

10 Range STATEMENT VALUES GENERATED RANGE(10) 0,1,2,3,4,5,6,7,8,9
5,8,11,14 RANGE(10,5,-1) 10,9,8,7,6 RANGE(10,1,-2) 10,8,6,4,2

11 Using else Statement with for and while Loop
If the else statement is used with a for loop, the else statement is executed when the loop has exhausted iterating the list. If the else statement is used with a while loop, the else statement is executed when the condition becomes false. Ex #(for loop ) for num in range(10,20): #to iterate between 10 to 20 for i in range(2,num): #to iterate on the factors of the number if num%i == 0: #to determine the first factor j=num/i #to calculate the second factor print ('%d equals %d * %d' % (num,,i,,j)) break #to move to the next number, the #first FOR else: # else part of the loop print (num, 'is a prime number‘) #(While loop) count = 0 while count < 5: print (count, " is less than 5“) count = count + 1 else: print (count, " is not less than 5“)

12 Nested loop Python programming language allows to use one loop inside another loop. Following section shows few examples to illustrate the concept. Syntax for iterating_var in sequence: statements(s) The syntax for a nested while loop statement in Python programming language is as follows − while expression: statement(s)

13 A final note on loop nesting is that you can put any type of loop inside of any other type of loop. For example a for loop can be inside a while loop or vice versa. The following program uses a nested for loop to find the prime numbers from 2 to 100 − Ex  i = 2 while(i < 100): j = 2 while(j <= (i/j)): if not(i%j): break j = j + 1 if (j > i/j) : print (i,"is prime“) i = i+1 print ("Good bye!")

14 THANK YOU BY CHIRAG AND VIPIN


Download ppt "LOOP Basics."

Similar presentations


Ads by Google