Factorial Using Python Programming With Examples

Before we start implementing factorial using Python, let us first discuss what factorial of a number implies.

Theoretically, the factorial of a number is defined as the product of all positive integers less than or equal to the number. Certainly, ‘n!’ represents the factorial of an integer ‘n’. As an example, let us look at the factorial of the number 6,

6! = 6 * 5 * 4 * 3 * 2 * 1

The following techniques could be followed to determine the factorial of an integer.

  1. Using Loop
  2. Using Recursive function call
  3. Using predefined function ‘factorial()’ from the math module

Using Loop in Python

The below-mentioned code illustrates how we can calculate the factorial of a given number using for loop in Python programming.

Output:

Using Recursion function call in Python

Similarly, we can also calculate the factorial of a given number using a Recursive function. Let us see how

Output

For a clear understanding of functions and recursion, one can refer to

Python Function and Arguments
Python Recursion Function

Using the factorial() method from the math module in Python

The math module provides a simple way to calculate the factorial of any positive integer. Certainly, the module comes with a pre-defined method ‘factorial()’ which takes in the integer as an argument and returns the factorial of the number. Let’s take a look at how we can use the pre-defined method and consequently find the factorial. The code given below depicts how the method ‘factorial()‘ can be used

Output:

Furthermore, in the case of all of the above-mentioned techniques, we have used a pre-defined value of the integer ‘n’. Also making ‘n’ a user input is possible. This could be easily achieved by substituting the line ‘n=9’ with:

The Python input function is covered in further detail in one of our previous articles.

References:

https://stackoverflow.com/questions/5136447/function-for-factorial-in-python

https://stackoverflow.com/questions/20604185/find-the-best-way-for-factorial-in-python

By admin

Leave a Reply

%d bloggers like this: