what is the pass function in python code example
Example 1: Python Pass
if(condition): (if this condtion is true)
pass (do not performance any operation)
else:
Statements (So only else will execute when condition false)
Example 2: pass python
# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
pass