what does. python pass do code example
Example 1: python pass
def example(): #This would produce a error if we left it.
def example2(): # This would not produce a error
pass
Example 2: pass python
# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
pass