Python Pass Statement
In Python, pass is a null statement or operation.When it is executed, nothing happens.Pass is use for bypass any code.
pass
for i in range(1,6):
if i==3:
pass
print "This is pass block"
print i
output:-
1
2
This is pass block
3
4
5