mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
5df8aec66c
* GitHub Action formats our code with psf/black @poyea Your review please. * fixup! Format Python code with psf/black push
35 lines
837 B
Python
35 lines
837 B
Python
def factorial(input_number: int) -> int:
|
|
"""
|
|
Calculate the factorial of specified number
|
|
|
|
>>> factorial(1)
|
|
1
|
|
>>> factorial(6)
|
|
720
|
|
>>> factorial(0)
|
|
1
|
|
>>> factorial(-1)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: factorial() not defined for negative values
|
|
>>> factorial(0.1)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: factorial() only accepts integral values
|
|
"""
|
|
|
|
if input_number < 0:
|
|
raise ValueError("factorial() not defined for negative values")
|
|
if not isinstance(input_number, int):
|
|
raise ValueError("factorial() only accepts integral values")
|
|
result = 1
|
|
for i in range(1, input_number):
|
|
result = result * (i + 1)
|
|
return result
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|