Subtract three¶
Example call¶
To decrement the value of a number by three, use the subtract_three function.
Reference¶
python_package_template.subtract_three(number: int) -> int
¶
Decrement the input by 3.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
number
|
|
The input number. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
int |
|
The input decremented by 3. |