Programming Examples

Python program to find the sum of factorial upto n terms using function


Write program to find the sum of factorial upto n terms

Solution

def factorial(num):
    fact=1
    while(num>0):
        fact=fact*num
        num=num-1
    return(fact)
n=int(input("Enter Value of n : "))
sum=0
for a in range(1,n+1):
    sum=sum+factorial(a)
print("Sum of Factorials : ",sum)
▶ RUN

Output/ Explanation:

Enter Value of n : 5

Sum of Factorials :  153

Latest Current Affairs 2025 Online Exam Quiz for One day Exam Online Typing Test CCC Online Test Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Online MBA 2 years Online MCA Online BCA Best Website and Software Company in Allahabad