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 frozenset()
Python Program to Check if a Number is Positive, Negative or 0
Python List append()
Python String format()
Python Tuple count()
Python Program to Shuffle Deck of Cards
Learning scikit-learn Machine Learning in Python - Raul Garreta & Guillermo Moncecchi
Python staticmethod()
Python hex()
Python Program to Sort Words in Alphabetic Order
Python Program to Capitalize the First Character of a String
Python Program to Find the Size (Resolution) of a Image
Python Machine Learning - Sebastian Raschka
Python Set symmetric_difference()
Python pow()
Python Program to Print Output Without a Newline
Python Deep Learning - Valentino Zocca & Gianmario Spacagna & Daniel Slater & Peter Roelants
Python Program to Convert Decimal to Binary Using Recursion
Python Program to Split a List Into Evenly Sized Chunks
Python Program to Merge Mails
Python String isdecimal()
Python Program to Find the Largest Among Three Numbers
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python eval()
Python Program to Find Hash of File
Python Inheritance
Python Program Read a File Line by Line Into a List
Python strftime()
Python String encode()
Python __import__()
Python Operators
Python Dictionary fromkeys()