python编写代码实现阶乘功能
时间: 2023-07-23 15:39:09 浏览: 103
python计算n的阶乘的方法代码
5星 · 资源好评率100%
可以使用循环语句来实现阶乘功能,代码如下:
```python
def factorial(n):
result = 1
for i in range(1, n+1):
result *= i
return result
```
使用时只需要传入需要求阶乘的数即可,例如:
```python
print(factorial(5)) # 输出 120
```
阅读全文