Recursive Factorial

Write a program recursive_factorial.py that includes a recursive function fact(n) that returns the factorial of n.

Example Output

Calling fact(10) produces the output:

3628800