import math x = int(input('enter number:")) print ("The factorial of 5 is : ", math.factorial(x)) code example
Example: python calculate factorial
def factorial(n):
fact = 1
for num in range(2, n + 1):
fact = fact * num
return(fact)