Looping Statement
While Loop
while expression:
statement(s)
count = 0
while count < 9:
print ('The count is:', count)
count = count + 1
print("Good bye!")
Using else Statement with While Loop
num=0
while num < 10:
num=num+1
if num%2==0:
print('In side the loop', num)
break
else:
print ('Outside the loop in else')
Output:
In side the loop 2
for loop
for iterating_var in sequence:
statements(s)
for var in list(range(5)):
print (var)
Output:
0
1
2
3
4
for letter in 'Python':
if letter == 'h':
break
print ('Current Letter :', letter)
print ('Breaked Letter :', letter)
•Output:
Current Letter : P
Current Letter : y
Current Letter : t
Breaked Letter : h
 Using else Statement with Loops
 Python supports to have an else statement associated with a loop statement
 If the else statement is used with a for loop, the else block is executed only if for
loops terminates normally (and not by encountering break statement)
 If the else statement is used with a while loop, the else statement is executed when
the condition becomes false.
numbers = [11, 33, 55, 39, 55, 76, 37, 21, 23, 41, 13]
for num in numbers:
if num%2==0:
print('the list contains an even number')
break
else:
print('the list does not contain even number')
Output:
the list contains an even number

6.Looping.pptxhujjeiejidkeik4i8rj488rj484j48

  • 1.
  • 2.
    While Loop while expression: statement(s) count= 0 while count < 9: print ('The count is:', count) count = count + 1 print("Good bye!")
  • 3.
    Using else Statementwith While Loop num=0 while num < 10: num=num+1 if num%2==0: print('In side the loop', num) break else: print ('Outside the loop in else') Output: In side the loop 2
  • 4.
    for loop for iterating_varin sequence: statements(s) for var in list(range(5)): print (var) Output: 0 1 2 3 4
  • 5.
    for letter in'Python': if letter == 'h': break print ('Current Letter :', letter) print ('Breaked Letter :', letter) •Output: Current Letter : P Current Letter : y Current Letter : t Breaked Letter : h
  • 6.
     Using elseStatement with Loops  Python supports to have an else statement associated with a loop statement  If the else statement is used with a for loop, the else block is executed only if for loops terminates normally (and not by encountering break statement)  If the else statement is used with a while loop, the else statement is executed when the condition becomes false.
  • 7.
    numbers = [11,33, 55, 39, 55, 76, 37, 21, 23, 41, 13] for num in numbers: if num%2==0: print('the list contains an even number') break else: print('the list does not contain even number') Output: the list contains an even number