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 Program to Check Armstrong Number
Python Program to Sort a Dictionary by Value
Python Dictionary setdefault()
Python Shallow Copy and Deep Copy
Python Program to Safely Create a Nested Directory
Python zip()
Python Program to Convert Bytes to a String
Python Program to Check If Two Strings are Anagram
Python hex()
Python Machine Learning Eqution Reference - Sebastian Raschka
Python oct()
Python Program to Check the File Size
Python all()
Python Program to Count the Number of Each Vowel
Python Program to Print Output Without a Newline
Python any()
Python Program to Swap Two Variables
Python for Programmers with introductory AI case studies - Paul Deitel & Harvey Deitel
Python Program to Convert Kilometers to Miles
Python Program to Catch Multiple Exceptions in One Line
Python datetime
Python reversed()
Python Program to Find the Size (Resolution) of a Image
Python Program to Find the Factors of a Number
Python Artificial Intelligence Project for Beginners - Joshua Eckroth
Python String center()
Python @property decorator
Python Global, Local and Nonlocal variables
Python String islower()
Python Program to Access Index of a List Using for Loop
Python List append()