demo_function.py:
def my_function(): print("Hello from a function") my_function()
C:\Users\My Name>python demo_function.py
Hello from a function