def func_name (param_1: int, param_2: int) -> float:
"""
This is an example of how to define a function in Python.
Here, we use type hinting to indicate to the user how they should use it.
In:
* param_1: The first argument to take as an input.
* param_2: The second argument to take as an input.
Out:
* A result computed by the function.
"""
# Do something
...
# Return something
return result