Wap to find the sum of the seies: x-x^2/2!+x^3/3!-x^4/4!+x^5/5!-x^6/6! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

Wap to find the sum of the seies: x-x^2/2!+x^3/3!-x^4/4!+x^5/5!-x^6/6!

I did this... x=int(input(" enter value for x")) j=int(input("enter value for j")) sum=0 fact =1 sign=1 for i in range(1,x+1): for j in range(1,j+1): fact= fact*1 sum+= (sign*(x**i)/fact*i)

7th Feb 2020, 8:18 AM
Manaswi Thakur
Manaswi Thakur - avatar
1 Answer
0
fact*1 ? You mean fact= fact*j; sign value not altering.. sign=-sign For last statement, indentation is missing.. Print the total sum last... Hoping it helps you..
7th Feb 2020, 9:52 AM
Jayakrishna 🇮🇳