1!+2!+3!+4!+5!的python语言
时间: 2023-07-02 15:23:32 浏览: 353
k-menas++_pythonk-means++_yolov4_源码
5星 · 资源好评率100%
在 Python 中,可以使用 math 模块中的 factorial() 函数来计算阶乘,然后将结果相加即可。代码如下:
```python
import math
result = math.factorial(1) + math.factorial(2) + math.factorial(3) + math.factorial(4) + math.factorial(5)
print(result)
```
输出结果为:
```
153
```
阅读全文