top of page

Python Program to find Sum of Series 1**3 + 2**3 + ................... + n**3

  • Writer: Rajesh Singh
    Rajesh Singh
  • Sep 28, 2021
  • 1 min read



Program:

n = int(input("Enter Positive Number : "))

sum = 0

sum= ((n*n)*(n+1)*(n+1))/4

print("The Sum of Series is",sum)

Output:

Enter Positive Number : 2

The Sum of Series is 9.0




Recent Posts

See All

Komentarze


bottom of page