demo_function.py:
def my_function(): print("Hello from a function") my_function()
➜ begtut>python demo_function.py
Hello from a function