Programming Examples

Python program to print the sum of series


Write a Python program to print the sum of series 1^3 + 2^3 + 3^3 + 4^3 + …….+ n^3 till n-th term. N is the value given by the user.

Solution

n=int(input("Enter the value of n : "))
sum=0
for a in range(1,n+1):
    sum=sum+a**3
print("sum of Series : ",sum)
Output

Enter the value of n : 10

sum of Series :  3025

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