求python1*2*3*…20
时间: 2023-12-18 17:29:21 浏览: 115
以下是两种求解python1*2*3*...*20的方法:
1.使用for循环计算乘积
```python
result = 1
for i in range(1, 21):
result *= i
print(result) # 输出:2432902008176640000
```
2.使用math库中的阶乘函数
```python
import math
result = math.factorial(20)
print(result) # 输出:2432902008176640000
```
阅读全文