Subtract three¶
Example call¶
To decrement the value of a number by three, use the subtract_three function.
from python_package_template import subtract_three
print(subtract_three(8))
Description of the subtract_three function:¶
- python_package_template.subtract_three(x: int) int ¶
Decrement the input by 3.
- Args:
x (int): The input number.
- Returns:
int: The input decremented by 3.