Google News
logo
Python Pass Statement
The python pass statement is a null operation. In Python is used when a statement is required syntactically but you do not want any command or code to execute. 
Syntax :
pass

Suppose we have a loop or a function that is not implemented yet, but we want to implement it in the future. They cannot have an empty body. The interpreter would complain. So, we use the pass statement to construct a body that does nothing.

>>> for i in [1,2,3,4,5,6,7,8,9]:
	if i==3:
		pass
	print ("Pass when value is : ",i)
	print (i,)

	
Pass when value is :  1
1
Pass when value is :  2
2
Pass when value is :  3
3
Pass when value is :  4
4
Pass when value is :  5
5
Pass when value is :  6
6
Pass when value is :  7
7
Pass when value is :  8
8
Pass when value is :  9
9
>>>