Program to Print Factorial of a Number in Python
Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that number you ask for factorial. It is denoted by an exclamation sign (!).
Code:
num = int(input("Enter a number: "))
factorial = 1
if num < 0:
print(" 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):
factorial = factorial*i
print("The factorial of",num,"is",factorial)
Output:

Read More:
Program to Swap Two variables
Check whether given string is Palindrome or not
Program to Reverse a list
Convert Snake_Case to CamelCase
Print Fibonacci Series
Multiply List in Python
Sum of List in Python
The Tech Platform