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