Python Pass:
Python Pass statement is used to pass by without the execution of current iteration in between the loop.
Syntax:
loop/conditions statements:
statements
pass
Example:
//pythonexample.py
print "Extracting terms from word ALPHA_NUMERIC.CHARACTERS:" for x in "ALPHA_NUMERIC. CHARACTERS": if x == ".": print "\n" continue if x == "_": print "\n" continue if x == " ": pass print x |
Output: