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