Write a python program defining a function to return factorial of a number passed as arguments. code example
Example: python calculate factorial
def factorial(n):
fact = 1
for num in range(2, n + 1):
fact = fact * num
return(fact)