1的阶乘一直加到10的阶乘的和python math
时间: 2024-05-02 09:16:12 浏览: 29
python计算阶乘和的方法(1!+2!+3!+…+n!)
您可以使用 Python 中的 math 模块来计算从1的阶乘到10的阶乘的和。下面是一个示例代码:
```python
import math
# 计算从1到10的阶乘的和
total = 0
for i in range(1, 11):
total += math.factorial(i)
print(total)
```
输出结果为: 4037913
阅读全文