Python Program to Find the Factorial of a Number
Updated: May 18, 2020
Program to find the Factorial of a Number
num = int(input("Enter a number: ")) fact = 1 if num < 0: print("Sorry, factorial does not exist for negative numbers") elif num == 0: print("The factorial of 0 is 1") else: for i in range(1,num + 1): fact = fact*i print("The factorial of num is",fact)
Output:
Enter a number: 4 The factorial of num is 24