Develop a function in python to generate and sum the following series x+x*y+(x*y)2+(x*y)3++(x)n
Supply x, y, n as inputs to the function. Do not use any library functions, use loops and other basic
structures.
Solution
def series(x, y, n):
l = []
l.append(x)
for i in range(1, n):
l.append(x*y*i)
#sauravhathi
for i in l:
print(i, end=" ")
print()
return sum(l)
x = int(input("Enter the first number: "))
y = int(input("Enter the second number: "))
n = int(input("Enter the number of terms: "))
print(series(x, y, n))Output:
Enter the first number: 1 Enter the second number: 2 Enter the number of terms: 6 1 2 4 6 8 10 31
Happy Learning – If you require any further information, feel free to contact me.
![[Solved] Develop a function in python to generate and sum the following series [Solved] Develop a function in python to generate and sum the following series](https://realcoder.techss24.com/wp-content/uploads/2022/07/Solved-Develop-a-function-in-python-to-generate-and-sum-the-following-series.png)

![[Solved] Eliminate Row using Pandas Python](https://realcoder.techss24.com/wp-content/uploads/2022/06/Solved-Eliminate-Row-using-Pandas-Python-300x200.png)
