Python Pass

In Python, pass keyword is used to execute nothing; it means, when we don't want to execute code, the pass can be used to execute empty. It is same as the name refers to. It just makes the control to pass by without executing any code. If we want to bypass any code pass statement can be used.

Python Pass Syntax

  1. pass  

Python Pass Example

  1. for i in [1,2,3,4,5]:  
  2.     if i==3:  
  3.         pass  
  4.         print "Pass when value is",i  
  5.     print i,  

Output:

  1. >>>   
  2. 1 2 Pass when value is 3  
  3. 3 4 5  
  4. >>>  
;