SlideShare a Scribd company logo
3
Most read
5
Most read
6
Most read
Jump
Statements
Types of Jump
Statements
Break
Continue
Pass
BREAK
STATEMENT
break statement is used to exit from
the iterative statements (loops) such
as for, while. Use case of this
statement terminates the execution
of loop immediately, and then
program execution will jump to the
next statements.
SYNTAX
for var in sequence:
statement1
statement2
if condition:
break
EXAMPLE
list = [1,2,3,4,5,6]
a=0
b=0
for num in list:
print num
a+=num
b+=1
if(b == 3):
break
print "sum is =%d"%(a)
1
2
3
sum is =6
Output
CONTINUE
STATEMENT
continue statement is used to continue
the loop execution i.e. to get back to
the top of the iterative statements
(loops) such as for, while. Use case of
this statement stops the further
statement execution of loop
immediately.
a=0
for b in range(1,7):
a+=b
b+=1
if(b == 5):
continue
print “b is:%d"%(b)
print "sum is =%d"%(a)
EXAMPLE
OUTPUT
PASS STATEMENT
pass statement is used when programmer
don’t want to execute a set of code.
pass statement is null operation. So,
nothing will happen when pass statement
has been executed.
Mostly, programmer uses the pass
statement when they don’t want to
execute the code, but they want the
syntactical expressions. You use pass
statement when you create a method that
you don't want to implement, yet.
SYNTAX
def passMethod():
pass
print('hello')
OUTPUT
hello
Example without using
pass statement
def myMethod():
print('hello')
Traceback (most recent call last):
File "python", line 3
print('hello')
IndentationError: expected an indented block
Output
For more presentation in any
subject please contact us on
raginijain0208@gmail.com
Jump statment in python

More Related Content

What's hot (20)

PPT
Decision making and looping
Hossain Md Shakhawat
 
PPT
Branching in C
Prabhu Govind
 
PDF
Python Flow Control
Mohammed Sikander
 
PPTX
Presentation on python
william john
 
PPTX
Loops in Python.pptx
Guru Nanak Dev University, Amritsar
 
PPTX
Loops in c programming
CHANDAN KUMAR
 
PPT
Formatted input and output
Online
 
PPTX
Looping Statements and Control Statements in Python
PriyankaC44
 
PPTX
Theory of Automata and formal languages unit 2
Abhimanyu Mishra
 
PDF
Lecture 01 introduction to compiler
Iffat Anjum
 
PPT
08 c++ Operator Overloading.ppt
Tareq Hasan
 
PPTX
Python - An Introduction
Swarit Wadhe
 
PPTX
Turing machine - theory of computation
Rubaya Mim
 
PPT
Constants in C Programming
programming9
 
PDF
Introduction to Python
Mohammed Sikander
 
PPTX
Push Down Automata (PDA) | TOC (Theory of Computation) | NPDA | DPDA
Ashish Duggal
 
PPTX
Type casting in c programming
Rumman Ansari
 
PPTX
Decision Making Statement in C ppt
MANJUTRIPATHI7
 
PPTX
Python Exception Handling
Megha V
 
PDF
Introduction to python programming
Srinivas Narasegouda
 
Decision making and looping
Hossain Md Shakhawat
 
Branching in C
Prabhu Govind
 
Python Flow Control
Mohammed Sikander
 
Presentation on python
william john
 
Loops in c programming
CHANDAN KUMAR
 
Formatted input and output
Online
 
Looping Statements and Control Statements in Python
PriyankaC44
 
Theory of Automata and formal languages unit 2
Abhimanyu Mishra
 
Lecture 01 introduction to compiler
Iffat Anjum
 
08 c++ Operator Overloading.ppt
Tareq Hasan
 
Python - An Introduction
Swarit Wadhe
 
Turing machine - theory of computation
Rubaya Mim
 
Constants in C Programming
programming9
 
Introduction to Python
Mohammed Sikander
 
Push Down Automata (PDA) | TOC (Theory of Computation) | NPDA | DPDA
Ashish Duggal
 
Type casting in c programming
Rumman Ansari
 
Decision Making Statement in C ppt
MANJUTRIPATHI7
 
Python Exception Handling
Megha V
 
Introduction to python programming
Srinivas Narasegouda
 

Similar to Jump statment in python (20)

PPTX
Python decision making_loops_control statements part8
Vishal Dutt
 
PPTX
Break,Pass and Continue.pptx
UjjwalGupta604782
 
PPTX
BREAK AND CONTINUE.pptx
visaagan2022
 
PPTX
This is all about control flow in python intruducing the Break and Continue.pptx
elezearrepil1
 
PPTX
break continue and pass in python progran.pptx
urvashipundir04
 
PPTX
a1 this is in python that has break continue and pass.pptx
urvashipundir04
 
PDF
Break, Continue and Pass in Python.pdf
NehaSpillai1
 
PDF
python program
tomlee12821
 
PPTX
break continue and pass statement in python.pptx
sayalee7
 
PPTX
TN 12 computer Science - ppt CHAPTER-6.pptx
knmschool
 
DOC
Jumping statements
Suneel Dogra
 
PPTX
PyClassDay13.pptx
HariCasv
 
PPTX
6 Iterative Statements.pptx
ssuser8e50d8
 
PPT
presentation_jumping_statements_.ppt
Srinivas237938
 
PPT
9 cm604.13
myrajendra
 
PPTX
Loop control structure
narmadhakin
 
PDF
While-For-loop in python used in college
ssuser7a7cd61
 
PPTX
While_for_loop presententationin first year students
SIHIGOPAL
 
DOCX
iterations.docx
ssuser2e84e4
 
PDF
PYTHON FULL TUTORIAL WITH PROGRAMMS
Aniruddha Paul
 
Python decision making_loops_control statements part8
Vishal Dutt
 
Break,Pass and Continue.pptx
UjjwalGupta604782
 
BREAK AND CONTINUE.pptx
visaagan2022
 
This is all about control flow in python intruducing the Break and Continue.pptx
elezearrepil1
 
break continue and pass in python progran.pptx
urvashipundir04
 
a1 this is in python that has break continue and pass.pptx
urvashipundir04
 
Break, Continue and Pass in Python.pdf
NehaSpillai1
 
python program
tomlee12821
 
break continue and pass statement in python.pptx
sayalee7
 
TN 12 computer Science - ppt CHAPTER-6.pptx
knmschool
 
Jumping statements
Suneel Dogra
 
PyClassDay13.pptx
HariCasv
 
6 Iterative Statements.pptx
ssuser8e50d8
 
presentation_jumping_statements_.ppt
Srinivas237938
 
9 cm604.13
myrajendra
 
Loop control structure
narmadhakin
 
While-For-loop in python used in college
ssuser7a7cd61
 
While_for_loop presententationin first year students
SIHIGOPAL
 
iterations.docx
ssuser2e84e4
 
PYTHON FULL TUTORIAL WITH PROGRAMMS
Aniruddha Paul
 
Ad

More from RaginiJain21 (8)

PPTX
Looping statement in python
RaginiJain21
 
PPTX
Conditionalstatement
RaginiJain21
 
PPTX
Python media library
RaginiJain21
 
PPTX
Basic python programs
RaginiJain21
 
PPTX
Python Libraries and Modules
RaginiJain21
 
PPTX
Data types in python
RaginiJain21
 
PPTX
Python second ppt
RaginiJain21
 
PPTX
Final presentation on python
RaginiJain21
 
Looping statement in python
RaginiJain21
 
Conditionalstatement
RaginiJain21
 
Python media library
RaginiJain21
 
Basic python programs
RaginiJain21
 
Python Libraries and Modules
RaginiJain21
 
Data types in python
RaginiJain21
 
Python second ppt
RaginiJain21
 
Final presentation on python
RaginiJain21
 
Ad

Recently uploaded (20)

PDF
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PPTX
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PPTX
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 

Jump statment in python