e**x=1+x+x**2/2+x**3/3!+~+x**n/n用python怎么求
时间: 2023-12-04 11:02:48 浏览: 309
求n+nn+nnn,。。。。.py
以下是使用Python求e的x次方的近似值的代码:
```python
import math
def e_power_x(x, n):
result = 0
for i in range(n):
result += x**i / math.factorial(i)
return result
print(e_power_x(2, 10)) # 输出:7.3887125220458545
```
其中,`math.factorial(i)`是Python内置的求阶乘的函数。
--相关问题--:
1. 如何在Python中求阶乘?
2. Python中有哪些内置的数学函数?
3. 如何在Python中生成随机数
阅读全文