Reference#
Modules#
Math#
General Functions.
- huber.math.factorial(n)[source]#
Get facorial of n (recursive version).
- N
Integer to calculate factorial for
- Returns
Factorial of n
- Parameters
n (int) –
- Return type
int
>>> factorial(4) 24
General Functions.
Get facorial of n (recursive version).
Integer to calculate factorial for
Factorial of n
n (int) –
int
>>> factorial(4)
24