What is the output of the following code?
print("Recursive Function")
def factorial(n):
return(n*factorial(n-1))








Posted on by