Blog
TCCI > Blog > Python Coaching at TCCI > What is use of pass statement in Python?-tccicomputercoaching.com
What is use of pass statement in Python?-tccicomputercoaching.com
- February 18, 2020
- Posted by: Riddhi Dhandha
- Category: Python Coaching at TCCI
No Comments
The pass statement . pass_stmt: “pass“. pass is a null operation — when it is executed, nothing happens.
Use the pass statement to indicate empty functions , classes and loops. With pass, we indicate a
“null” block. Pass can be placed on the same line, or on a separate line. Pass can be used to quickly add thingsthat are unimplemented.
Example:
str=”Hello”
for i in str:
if i==’H’:
pass
print(“pass is executed:”)
else:
print(i)
Output:
pass is executed
e
l
l
o
To learn more about Python at TCCI.
Call us @ 9825618292
Visit us @ www.tccicomputercoaching.com
Leave a Reply Cancel reply
[vc_row full_width=”” parallax=”” parallax_image=””][vc_column width=”1/1″][vc_widget_sidebar sidebar_id=”default”][/vc_column][/vc_row]