In this program, you’ll learn to find the factorial of a number using recursive function.
To understand this example, you should have the knowledge of the following Python programming topics:
The factorial of a number is the product of all the integers from 1 to that number.
For example, the factorial of 6 is 1*2*3*4*5*6 = 720. Factorial is not defined for negative numbers and the factorial of zero is one, 0! = 1.
Source Code
# Factorial of a number using recursion
def recur_factorial(n):
if n == 1:
return n
else:
return n*recur_factorial(n-1)
num = 7
# check if the number is negative
if num < 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1")
else:
print("The factorial of", num, "is", recur_factorial(num))
Output
The factorial of 7 is 5040
Note: To find the factorial of another number, change the value of num.
Here, the number is stored in num. The number is passed to the recur_factorial() function to compute the factorial of the number.
Related posts:
Python String expandtabs()
Python Numbers, Type Conversion and Mathematics
Python Program to Get Line Count of a File
Python enumerate()
Python Program to Add Two Matrices
Python Exception Handling Using try, except and finally statement
Python Program to Parse a String to a Float or Int
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Python Program to Convert Decimal to Binary Using Recursion
Python Program to Display Powers of 2 Using Anonymous Function
Python setattr()
Python String rindex()
Python Global, Local and Nonlocal variables
Python Program to Find the Largest Among Three Numbers
Python String split()
Python Program to Make a Simple Calculator
Python String find()
Python eval()
Python reversed()
Python bytearray()
Python Program to Print the Fibonacci sequence
Python Dictionary pop()
Python Program to Check If a List is Empty
Python Program to Shuffle Deck of Cards
Python Closures
Python String isidentifier()
Python Set symmetric_difference()
Python Program to Remove Punctuations From a String
Python Program to Count the Number of Each Vowel
Python Deep Learning Cookbook - Indra den Bakker
Python Dictionary get()
Python Program to Differentiate Between type() and isinstance()