、编写函数,计算20*19*18*17*……*3的结果
时间: 2023-11-14 09:08:06 浏览: 59
python中如何进行连乘计算
可以使用循环来计算这个乘积,代码如下:
```python
def calculate_product():
result = 1
for i in range(20, 2, -1):
result *= i
return result
print(calculate_product()) # 输出结果为 1860482880000000
```
阅读全文