Functions
>>> def my\_function():
... print("Hello from a function")
...
>>> my_function()
Hello from a function
See: Functions
Comments
>>> def my\_function():
... print("Hello from a function")
...
>>> my_function()
Hello from a function
See: Functions