Python Basic
Python Interview Programs
- Python Interview Programs
- Python Abundant Number
- Python Amicable Number
- Python Armstrong Number
- Python Average of N Numbers
- Python Automorphic Number
- Python Biggest of three numbers
- Python Binary to Decimal
- Python Common Divisors
- Python Composite Number
- Python Condense a Number
- Python Cube Number
- Python Decimal to Binary
- Python Decimal to Octal
- Python Disarium Number
- Python Even Number
- Python Evil Number
- Python Factorial of a Number
- Python Fibonacci Series
- Python GCD
- Python Happy Number
- Python Harshad Number
- Python LCM
- Python Leap Year
- Python Magic Number
- Python Matrix Addition
- Python Matrix Division
- Python Matrix Multiplication
- Python Matrix Subtraction
- Python Matrix Transpose
- Python Maximum Value of an Array
- Python Minimum Value of an Array
- Python Multiplication Table
- Python Natural Number
- Python Number Combination
- Python Odd Number
- Python Palindrome Number
- Python Pascalβs Triangle
- Python Perfect Number
- Python Perfect Square
- Python Power of 2
- Python Power of 3
- Python Pronic Number
- Python Prime Factor
- Python Prime Number
- Python Smith Number
- Python Strong Number
- Python Sum of Array
- Python Sum of Digits
- Python Swap Two Numbers
- Python Triangular Number
Python Program to find Factorial of a Number
Photo Credit to CodeToFun
π Introduction
In the world of programming, solving mathematical problems is a fundamental skill. One such mathematical operation is finding the factorial of a number.
The factorial of a non-negative integer is the product of all positive integers less than or equal to that number. It's denoted by the symbol !.
In this tutorial, we'll explore a simple yet effective Python program to calculate the factorial of a given number.
π Example
Let's take a look at the Python code that achieves this functionality.
# Function to calculate factorial
def calculate_factorial(num):
if num == 0 or num == 1:
return 1
else:
return num * calculate_factorial(num - 1)
# Driver program
if __name__ == "__main__":
# Replace this value with your desired number
number = 5
# Call the function to calculate factorial
result = calculate_factorial(number)
# Display the result
print(f"Factorial of {number} is: {result}")
π» Testing the Program
To test the program with a different number, replace the value of number in the if __name__ == "__main__": block.
Factorial of 5 is: 120
Run the script to see the factorial in action.
π§ How the Program Works
- The program defines a function calculate_factorial that recursively calculates the factorial of a given number.
- In the if __name__ == "__main__": block, replace the value of number with the desired input.
- The program then calls the calculate_factorial function to compute the factorial.
- The result is displayed using print.
π§ Understanding the Concept of Factorial
Before delving into the code, let's take a moment to understand the concept of factorial.
The factorial of a non-negative integer n, denoted as n!, is the product of all positive integers less than or equal to n.
For example, the factorial of 5 (5!) is calculated as 5 × 4 × 3 × 2 × 1 = 120.
π’ Optimizing the Program
While the provided program is effective, it uses recursion to calculate the factorial. Depending on the input value, this approach may lead to a stack overflow for large numbers. Consider exploring iterative solutions for larger inputs or optimizing the recursive approach.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (Python Program to find Factorial of a Number), please comment here. I will help you immediately.