Challenge 8 - Factorial Calculator: Write a Python function to calculate the factorial of a given number 'n'. The factorial of a non-negative integer 'n' is the product of all positive integers less than or equal to 'n'. #Factorial#RecursionChallenge#PythonMath