使用python编写程序求1到10的阶乘和
时间: 2023-09-01 12:07:53 浏览: 623
阶乘求和1到10
以下是Python程序,可以实现求1到10的阶乘和。
```python
# 定义函数用于计算阶乘
def factorial(n):
if n == 1:
return 1
else:
return n * factorial(n-1)
# 计算1到10的阶乘和
total = 0
for i in range(1, 11):
total += factorial(i)
# 输出结果
print("1到10的阶乘和为:", total)
```
运行程序后,程序将计算1到10的阶乘和,并输出结果。
例如,程序将输出:
```
1到10的阶乘和为: 4037913
```
阅读全文