Factorial in Python

Factorial in Python

Factorial in python is denoted by (!). It is the process of multiplying all the whole numbers from the chosen number till 1 and returning the output. For example the factorial of 4 is:

4! = 4x3x2x1 

This is equal to 24. Hence the factorial of 4! is 24. In some mathematical terms, 4 factorial is also termed as 4 bang.

The rule of calculating factorial in python is:

n!= n x (n-1)!

This statement means the factorial of a number is the number itself times the number of that factorial minus one. There is a very interesting fact behind factorial of a number is that factorial of 0! is always 1. Factorial of 1 is also 1 always. The use of factorial value is done the places where one wants to use permutations and combinations.

Another interesting fact about factorial is that negative number in mathematics does not have factorial values. For example, there is no factorial value for -1. However, decimal values can have factorial values. For that process, the user needs to have knowledge about gamma function in Mathematics. The code tends to give ValueError exception if the integer is negative or non integer value.

Python program to find factorial using for loop

import sys

# Check if the number argument is provided
if len(sys.argv) < 2:
    print("Please provide a number as a command-line argument.")
    sys.exit(1)

try:
    num = int(sys.argv[1])
except ValueError:
    print("Invalid input. Please provide a valid integer.")
    sys.exit(1)

fact = 1

# To check if the number is negative, positive, or zero
if num < 0:
    print("The output is not valid")
elif num == 0:
    print("The factorial of 0 is 1")
else:
    for i in range(1, num + 1):
        fact = fact * i
    print("Factorial of %d is %d" % (num, fact))


The output of this python program will be:

The factorial of 6 would be 720

In python, the user doesn’t always need to write the whole python code. There is another way for computing the factorial of a program. There is a simpler way which is by using factorial() function in python. This function is found under math section in python. Implementation of a program using math.factorial is always fast as it has C type implementation.

Python program to find the factorial of a number provided by the user

num = int(input("Enter the number: "))
fact = 1

#To check if the number is negative, positive or zero
if num < 0:
    print("The output is not valid")
elif num == 0:
    print ("The factorial of 0 is 1")
else:
    for i in range(1,num + 1):
        fact = fact*i
    print ("Factorial of %d is %d" %(num, fact))

The output of this python program using factorial() will be:

Enter the number:
6

Factorial of 6 is 720

Summary:

  1. Factorial of 1 is always 1.
  2. The factorial of 0 is always 1.
  3. The formula for calculating factorial of an integer is:
    n!= n x (n-1)!

Leave a comment

Your email address will not be published. Required fields are marked *

Discover Our Exciting Courses and Quiz

Enroll now to enhance your skills and knowledge!

Python Online Quiz

Level up your coding skills with our interactive programming quiz!