demo_function_pass.py:
def myfunction(): pass # having an empty function definition like this, would raise an error without the pass statement
C:\Users\My Name>python demo_function_pass.py