Home »
Python »
Python programs
Python | Demonstrate an Example of pass statement
Python pass statement with example: Here, we are going to learn what pass statement in python is and how and when it is used?
Submitted by Pankaj Singh, on October 09, 2018
pass statement in python
"pass" is a type of null operation or null statement, when it executes nothing happens. It is used when you want do not want to write any code/statement to execute but syntactically a statement is required.
Let’s consider the given example...
Here, we are using "pass" statement in the function hello() definition - there is no statement in the function and if we do not use "pass", there will be an error.
def hello():
pass
hello()
Example 2:
for i in range(1,11):
if(i==6):
continue
else:
pass
print(i)
Output
1
2
3
4
5
7
8
9
10
Python Basic Programs »
ADVERTISEMENT
ADVERTISEMENT