Set 133 Practical Question
⭐ Q35. श्रृंखला 1 + x/1! + x²/2! + x³/3! + … का योग निकालिए
Example Code (Read Only):
s = 0 s += (x**i)/math.factorial(i) x = int(input("X: ")) n = int(input("Terms: "))
Python Online Editor
Font Size:
12px
14px
16px
18px
20px
24px
30px
RUN