用Python编写程序求1!+2!+3!+4!+5!
时间: 2023-09-08 22:10:17 浏览: 107
python 求1+2!+3!+...+20!的和 (示例)
5星 · 资源好评率100%
好的,您可以使用以下Python代码计算1! 2! 3! 4! 5!:
```
import math
factorials = [1, 2, 3, 4, 5]
for f in factorials:
print(str(f) + "! = " + str(math.factorial(f)))
```
运行上述代码后,会输出以下结果:
```
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
```
阅读全文