Programming Examples

Python program to create a function to calculate factorial value


Write a Python program to create a function for factorial value

Solution

def factorial(num):
    fact=1
    while(num>0):
        fact=fact*num
        num=num-1
    return(fact)
num=int(input("Enter any Number : "))
f=factorial(num)
print("Factorial value of ",num," is : ",f)
Output

Enter any Number : 5

Factorial value of  5  is :  120

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad