python利用for循环计算n的阶乘的值。
时间: 2023-05-23 20:04:25 浏览: 134
A:
```python
n = int(input("请输入一个正整数:"))
result = 1
for i in range(1, n+1):
result *= i
print("%d 的阶乘为:%d" %(n, result))
```
其中,`range(1, n+1)`会生成一个从1到n(包括n)的整数序列,然后利用for循环遍历这个序列,累乘得到结果。
阅读全文