Python Program to find Factorial of a Number

You are Here:

What is Factorial of a Number?

The factorial of a number n can be defined as the product of all positive numbers less than or equal to n. For example, the factorial of 6 is 1 × 2 × 3 × 4 × 5 × 6 = 720.

Examples

The following table provides few examples of factorial of a number.

NumberFactorialResult
1!11
2!1 × 22
3!1 × 2 × 36
4!1 × 2 × 3 × 424

Note: In Mathematics, factorial of a number is represented by exclamation mark.

Tips: It is recommended to use our online Factorial of a Number calculator for better understanding.

Find a Factorial of a Number

In the following example, we will find a factorial of a number 6.

Example

Python Compiler
num = 6; i = 1; factorial = 1; for i in range(1, num+1): factorial *= i; if(num): print("Factorial of %d: %d" % (num, factorial)) else: print("Factorial of 0: 0");

Output

Factorial of 6: 720

Find a Factorial of any Given Number

In the following example, we will find a factorial of any given number.

Example

Python Compiler
num = int(input("Enter a number: ")); i = 1; factorial = 1; for i in range(1, num+1): factorial *= i; if(num): print("Factorial of %d: %d" % (num, factorial)) else: print("Factorial of 0: 0");

Output

Enter a number: 5 Factorial of 5: 120

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on Python with examples for quick and easy learning.

We are working to cover every Single Concept in Python.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author