Program to find the factorial of a number in Python

#Program to find the factorial of a number in Python
n = int(input("Enter a number: "))
factorial = 1
if n >= 0:
if n >= 1:
for i in range (1, n+1):
factorial = factorial * i
print("Factorail of ",n , " is : ",factorial)