python 代码 求1!+2!+3!++++20!的和
时间: 2023-11-27 12:46:57 浏览: 88
windows下Python安装、使用教程和Notepad++的使用教程
```python
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
result = sum(factorial(i) for i in range(1, 21))
print(result)
```
阅读全文