借助于sympy.nC()方法,我们可以在SymPy中计算给定长度的组合数。
用法: nC(items, k)
参数:
items –要在其上计算组合的整数,列表或字符串。
k –一个整数,指定组合的长度。
返回值:返回给定长度的组合数。
示例1:
# import sympy
from sympy import *
items = "abca"
k = 3
print("Value of k = {} and the items are = {}".format(k, items))
# Use sympy.nC() method
combinations = nC(items, k)
print("Combinations : {}".format(combinations))
输出:
Value of k = 3 and the items are = abca Combinations : 3
示例2:
# import sympy
from sympy import *
items = [2, 1, 3, 5, 4]
k = 3
print("Value of k = {} and the items are = {}".format(k, items))
# Use sympy.nC() method
combinations = nC(items, k)
print("Combinations : {}".format(combinations))
输出:
Value of k = 3 and the items are = [2, 1, 3, 5, 4] Combinations : 10
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.nC() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。