Python| sympy.nC() 方法
借助sympy.nC()方法,我们可以计算 SymPy 中给定长度的组合数。
Syntax: nC(items, k)
Parameter:
items – An integer, a list or a string upon which combinations is to be calculated.
k – An integer specifying the length of the combinations.
Returns: Returns the number of combinations of a given length.
示例 #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