Q:

Write a program to calculate the sum of series up to n term using python programming.

belongs to collection: Python Loop Exercises

0

Find the sum of the series upto n terms

Write a program to calculate the sum of series up to n term. For example, if n =5 the series will become 2 + 22 + 222 + 2222 + 22222 = 24690

Given:

# number of terms
n = 5

Expected output:

24690

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution:

n = 5
# first number of sequence
start = 2
sum_seq = 0

# run loop n times
for i in range(0, n):
    print(start, end="+")
    sum_seq += start
    # calculate the next term
    start = start * 10 + 2
print("\nSum of above series is:", sum_seq)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a python program to print the following star... >>
<< Write a python program to rint the cube of all num...