python passs 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 in python
# pass in python is basically a placeholder thing to put in empty functions/classes
# example
def whatever():
pass
class whatever():
pass