Documentation for cookiecutter-pypackage-instanceยค
๐ An awesome python package by the name Cookiecutter Pypackage Instance.
factorial(integer) ยค
Return the factorial of a given integer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
integer | int | the integer whose factorial is going to be calculated | required |
Returns:
| Name | Type | Description |
|---|---|---|
int | int | the factorial of the provided integer |
Source code in src/cookiecutter_pypackage_instance/cookiecutter_pypackage_instance.py
4 5 6 7 8 9 10 11 12 13 14 15 16 | |