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 rpartition()
Python String strip()
Python List index()
Python Program to Generate a Random Number
Python vars()
Python Program to Get File Creation and Modification Date
Python tuple()
Python String isprintable()
Python @property decorator
Python Program to Safely Create a Nested Directory
Python Program to Find Hash of File
Python Program to Count the Number of Occurrence of a Character in String
Python String lower()
Python Program to Find Armstrong Number in an Interval
Python Program to Merge Two Dictionaries
Python Program to Append to a File
Python Program to Extract Extension From the File Name
Python Set intersection_update()
Machine Learning with Python for everyone - Mark E.Fenner
Python String isidentifier()
Python Program to Find Sum of Natural Numbers Using Recursion
Python String swapcase()
Python String splitlines()
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Python bytearray()
Python Set symmetric_difference_update()
Python Set intersection()
Python Iterators
Python Dictionary keys()
Deep Learning from Scratch - Building with Python form First Principles - Seth Weidman
Python String translate()
Python String isalnum()