pass en python code example
Example 1: pass python
# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
pass
Example 2: pass python
Is a null statement for classes and functions