Python/ref math comb
来自菜鸟教程
<languages />
Python math.comb()方法
例
找到可供选择的总数 k 来自的东西 n 项目:
# Import math Library import math # Initialize the number of items to choose from n = 7 # Initialize the number of possibilities to choose k = 5 # Print total number of possible combinations print (math.comb(n, k))
结果将是:
21
定义和用法
The
math.comb()
方法返回选择方式
k
来自的无序结果
n
无重复的可能性,也称为组合。
注意: 在此方法中传递的参数必须为正整数。
句法
math.comb(n, k)
参数值
参数 | 描述 |
---|---|
n | 需要。正整数项目可供选择 |
k | 需要。正整数项目可供选择 |
注意: 如果值 k 大于的值 n 结果将返回0。
注意: 如果参数为负,则发生ValueError。如果参数不是整数,则会发生TypeError。
技术细节
返回值: | An
|
Python版本: | 3.8 |