python代码定义阶乘函数f(n)=n!,调用此函数,求C_11^7。
时间: 2024-05-11 20:17:41 浏览: 45
python计算n的阶乘的方法代码
没问题,我理解你的要求。这是Python代码定义阶乘函数:
```
def factorial(n):
result = 1
for i in range(1, n+1):
result *= i
return result
```
现在,调用该函数来求C_11^7:
```
C = factorial(11) // (factorial(7) * factorial(11-7))
print(C)
```
运行程序后,可以得到C_11^7的值是330。
阅读全文