Welcome to Python Module Template’s documentation!¶
Functions¶
- python_module_template.functions.add(a: int | float, b: int | float) int | float ¶
Add two numbers.
Parameters: a (int or float): The first number. b (int or float): The second number.
Returns: int or float: The sum of the two numbers.
- python_module_template.functions.subtract(a: int | float, b: int | float) int | float ¶
Subtract two numbers.
Parameters: a (int or float): The first number. b (int or float): The second number.
Returns: int or float: The difference of the two numbers.