Module template_python_library.main
Expand source code
def dummy_function(inputs):
"""
This is a dummy function to demonstrate the docstring format
Parameters
----------
inputs : list
A list of inputs to the function.
Returns
-------
outputs : list
A list of outputs from the function.
Notes
-----
Additional notes about the function can be placed here.
"""
print(inputs)
return inputs
Functions
def dummy_function(inputs)
-
This is a dummy function to demonstrate the docstring format
Parameters
inputs
:list
- A list of inputs to the function.
Returns
outputs
:list
- A list of outputs from the function.
Notes
Additional notes about the function can be placed here.
Expand source code
def dummy_function(inputs): """ This is a dummy function to demonstrate the docstring format Parameters ---------- inputs : list A list of inputs to the function. Returns ------- outputs : list A list of outputs from the function. Notes ----- Additional notes about the function can be placed here. """ print(inputs) return inputs