Python Examples

Python Program to Find the Factorial of a Number

To find the Python factorial of a number, the number is multiplied with all the integers that lie between 1 and the number itself. Mathematically, it is represented by “!”. Thus, for example, 5! will be 5 x 4 x 3 x 2 x 1, that is 120. Factorial for negative numbers is not defined. Also, the factorial for number 0, that is, 0! is 1. Factorial of a number is frequently used in data analysis and higher mathematics problems. 

python factorial

Factorial Program in Python

Write a Python program to calculate the factorial of a number input by the user using the factorial () function.

                    

import math

n = int (input (“Enter the number whose factorial you want to find: ”))

print (“The factorial of the number is: “)

print (math.factorial (n))

Write a program to calculate the factorial of a number in Python using FOR loop.

                    

n = int (input (“Enter a number: “))

factorial = 1

if n >= 1:

              for i in range (1, n+1):

                             factorial = factorial *i

print (“Factorial of the given number is: “, factorial)

If there is the possibility that the number entered can be zero as well, then the code will be as follows.

                    

n = int (input (“Enter the number for which the factorial needs to be calculated: “)

factorial = 1

if n < 0:

              print (“Factorial cannot be calculated, non-integer input”)

elif n == 0:

              print (“Factorial of the number is 1”)

else:

              for i in range (1, n+1):

                             factorial = factorial *i

              print (“Factorial of the given number is: “, factorial)

Write the Python program to calculate the factorial of a number using recursion.

                    

n = int (input (“Enter the number for which the factorial needs to be calculated: “)

def rec_fact (n):

              if n == 1:

                             return n

elif n < 1:

              return (“Wrong input”)

else:

              return n*rec_fact (n-1)

print (rec_fact (n))

FAQs on Python Factorial

Q1. How do you calculate factorials in Python?

Python factorial can be calculated in various ways. The three possible ways through which a Python code can calculate the factorial of a positive integer are provided below.

For Loop

Recursion

math.factorial()

Q2.Does Python have a factorial?

Yes, we can calculate the factorial of a number with the inbuilt function in Python. The function factorial () is available in the Python library and can be used to compute the factorial without writing the complete code.

The factorial () function is defined in the math module of Python. The internal implementation of the function is C type, thus the computation is fast.

Syntax of factorial ():

math.factorial (x)

Parameters Required: x represents the parameter required to be passed in the function. It is the number for which the factorial needs to be calculated.

Return value: The function will return the factorial of the number passed in the parameter. If the number is non-integer or a negative integer, then it will return an error value.

Q3. How do you make a factorial loop in Python?

In Python, if one wishes to write the complete code to calculate the factorial, then they can use the loop. While using a loop, there can be two cases.

When it is assured that the number input for which the Python factorial needs to be calculated is going to be positive, then one can simply use the FOR loop.

However, if the number input can be negative, non-integer, or zero, then if…else conditions will also be added to the code.

Q4. How do you calculate factorials?

Python factorial can also be calculated using recursion. Recursion is the process when a defined function can call itself. Thus, with recursion, one can loop through the data till the required answer is reached.

Share with friends

Customize your course in 30 seconds

Which class are you in?
5th
6th
7th
8th
9th
10th
11th
12th
Get ready for all-new Live Classes!
Now learn Live with India's best teachers. Join courses with the best schedule and enjoy fun and interactive classes.
tutor
tutor
Ashhar Firdausi
IIT Roorkee
Biology
tutor
tutor
Dr. Nazma Shaik
VTU
Chemistry
tutor
tutor
Gaurav Tiwari
APJAKTU
Physics
Get Started

Leave a Reply

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

Download the App

Watch lectures, practise questions and take tests on the go.

Customize your course in 30 seconds

No thanks.