0% found this document useful (0 votes)
4 views1 page

Day 35 - Python - Else in Loop

The document explains the use of the else clause in Python loops, specifically with for and while loops. The else block executes after all iterations of the loop are completed. An example demonstrates how the else block functions within a for loop.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Day 35 - Python - Else in Loop

The document explains the use of the else clause in Python loops, specifically with for and while loops. The else block executes after all iterations of the loop are completed. An example demonstrates how the else block functions within a for loop.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Day 35 - Python - else in Loop

As you have learned before, the else clause is used along with the if
statement.

Python allows the else keyword to be used with the for and while loops too.
The else block appears after the body of the loop. The statements in the else
block will be executed after all iterations are completed. The program exits
the loop only after the else block is executed.

Syntax

for counter in sequence:


#Statements inside for loop block
else:
#Statements inside else block

Example:

for x in range(5):
print ("iteration no {} in for loop".format(x+1))
else:
print ("else block in loop")
print ("Out of loop")

Output:

iteration no 1 in for loop


iteration no 2 in for loop
iteration no 3 in for loop
iteration no 4 in for loop
iteration no 5 in for loop
else block in loop
Out of loop

You might also like