Write a program recursive_factorial.py that includes a recursive function fact(n) that returns the factorial of n.
recursive_factorial.py
fact(n)
n
Example Output
Calling fact(10) produces the output:
fact(10)
3628800