English

Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user. - Computer Science (Python)

Advertisements
Advertisements

Question

Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user.

Short Note

Solution

Program:
sum = 0
#Getting the number input from the user
n = int(input("Enter the number: "))
for a in range(1,n+1):
    #calculating the sum
    sum = sum + (1/pow(a,3))
#Sum of the series is
print("The sum of the series is: ",round(sum,2))

OUTPUT:
Enter the number: 5
The sum of the series is:  1.19
shaalaa.com
The ‘For’ Loop
  Is there an error in this question or solution?
Chapter 6: Flow of Control - Exercise [Page 140]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 6 Flow of Control
Exercise | Q 6. | Page 140
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×