Recommended
PDF
loopingstatementinpython-210628184047 (1).pdf
PPTX
industry coding practice unit-2 ppt.pptx
PPTX
Looping statement in python
PPTX
loopin gstatement in python using .pptx
PDF
E-Notes_3721_Content_Document_20250107032537PM.pdf
PPTX
Powerpoint - Conditionals_examples_Python.pptx
PPTX
6 Iterative Statements.pptx
PPTX
Python if_else_loop_Control_Flow_Statement
PDF
Unit 1- Part-2-Control and Loop Statements.pdf
PPTX
python learning basic Python_10_Looping.pptx
PDF
LOOPS TOPIC FOR CLASS XI PYTHON SYLLABUS
PDF
Python Decision Making And Loops.pdf
PPTX
Conditional and control statement
PDF
conditionalanddvfvdfvdvdcontrolstatement-171023101126.pdf
PDF
PDF
PPTX
ControlStructures.pptx5t54t54444444444444444
PPTX
class10pythonpptonloopsdifferenttypesansjumpstatement
PPTX
Python Looping (Unit_2) with for and while loop
PDF
Slide 6_Control Structures.pdf
PPT
PPT3-CONDITIONAL STATEMENT LOOPS DICTIONARY FUNCTIONS.ppt
PPTX
PPTX
Types of Statements in Python Programming Language
PDF
While Loop in python engineering .pdf
PPTX
pds first unit module 2 MODULE FOR ppt.pptx
PPT
PPT
ppt3-conditionalstatementloopsdictionaryfunctions-240731050730-455ba0fa.ppt
PPTX
PPTX
5.DecisionMaking.pptxbbhjjhjujuuhg5hf5ukmk
PPTX
ppts123 1.pptxjxjdkdkidkfkrijrixjdkkrkrkfkfi
More Related Content
PDF
loopingstatementinpython-210628184047 (1).pdf
PPTX
industry coding practice unit-2 ppt.pptx
PPTX
Looping statement in python
PPTX
loopin gstatement in python using .pptx
PDF
E-Notes_3721_Content_Document_20250107032537PM.pdf
PPTX
Powerpoint - Conditionals_examples_Python.pptx
PPTX
6 Iterative Statements.pptx
PPTX
Python if_else_loop_Control_Flow_Statement
Similar to 6.Looping.pptxhujjeiejidkeik4i8rj488rj484j48
PDF
Unit 1- Part-2-Control and Loop Statements.pdf
PPTX
python learning basic Python_10_Looping.pptx
PDF
LOOPS TOPIC FOR CLASS XI PYTHON SYLLABUS
PDF
Python Decision Making And Loops.pdf
PPTX
Conditional and control statement
PDF
conditionalanddvfvdfvdvdcontrolstatement-171023101126.pdf
PDF
PDF
PPTX
ControlStructures.pptx5t54t54444444444444444
PPTX
class10pythonpptonloopsdifferenttypesansjumpstatement
PPTX
Python Looping (Unit_2) with for and while loop
PDF
Slide 6_Control Structures.pdf
PPT
PPT3-CONDITIONAL STATEMENT LOOPS DICTIONARY FUNCTIONS.ppt
PPTX
PPTX
Types of Statements in Python Programming Language
PDF
While Loop in python engineering .pdf
PPTX
pds first unit module 2 MODULE FOR ppt.pptx
PPT
PPT
ppt3-conditionalstatementloopsdictionaryfunctions-240731050730-455ba0fa.ppt
PPTX
More from niyatipatel481617
PPTX
5.DecisionMaking.pptxbbhjjhjujuuhg5hf5ukmk
PPTX
ppts123 1.pptxjxjdkdkidkfkrijrixjdkkrkrkfkfi
PPTX
4.operators.pptxvhdjbejdbdjdnjdbrjdhdjjdjfjf.
PPTX
FM_PPT_GroupNo.9.pptxjrjidjdindkdnkdjrneirnri
PPTX
ADF- Lect-3 Django Project Structure, Django Apps Structure.pptx
PPTX
woundhealingseminar-150216070848-conversion-gate02-1.pptx
PPTX
Short-term source of finance.pptxdfduufdydu
PPTX
Short-term source of finance.pptxbjhnjsjsidj
PPT
5. Requirement Engineering Process(1).ppt
PPTX
major_project.pptxvvvvvbbjjjjjjjjnjnnjjjjjj
Recently uploaded
PDF
Top 7 Place to Buy Verified MoonPay Accounts.pdf
PDF
Buy TikTok Seller Account in usa 2026.pdf
PDF
5 sites To Buy Facebook Accounts Safely_ 2025 Guide..pdf
PDF
The Global Success Review: Abdullah Inayat For Top Business Leaders Redefinin...
PDF
Jay Bhaumik Plano - Skilled In Product Development
PDF
How To Buy, Verified Wise Account in 2026 .pdf
PDF
5 sites To Buy Instagram Accounts Safely_ 2025 Guide..pdf
PDF
Quickly Boost Your Network with LinkedIn Connection Purchases.pdf
PDF
Top 13 Resources for Quickly Buying Instagram Followers Online.pdf
PDF
10k to 50k followers Twitter Accounts for Sale.pdf
PDF
Step-by-Step Instructions for Buying a Snapchat Account (2).pdf
PDF
Comprehensive Guide to Purchasing Twitter Accounts_ New and Old.pdf
PDF
Avocado Farming and Exporting Project Proposal (Investment Proposal) in Teppi...
PPTX
Time Series Econometrics (Final December 27,2025).pptx
DOCX
The Ultimate Guide to Bulk Purchasing Old Gmail Accounts.docx
PDF
Comments on Dimi Design Intelligence Addendum, All Parts.pdf
PDF
Dimi Design Intelligence Addendum, All Parts.pdf
DOCX
How to Get a Verified Wise Account_ A Complete Buying 2026.docx
PDF
我們準備了受著作權保護的 2026 月曆電子賀卡,供您免費下載,祝您新年快樂
PPTX
Crisis-Management-Plan-Apple-final case study.pptx
6.Looping.pptxhujjeiejidkeik4i8rj488rj484j48 1. 2. 3. 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
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 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.
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