Program to find the factorial of a number in Python on January 19, 2021 Get link Facebook X Pinterest Email Other Apps #Program to find the factorial of a number in Pythonn = int(input("Enter a number: "))factorial = 1if n >= 0: if n >= 1: for i in range (1, n+1): factorial = factorial * i print("Factorail of ",n , " is : ",factorial)