Python| sympy.nT() 方法
在sympy.nT()方法的帮助下,我们可以计算在 SymPy 中可以具有给定数量的部分的分区数。
Syntax: nT(items, k)
Parameters:
items – An integer, a list or a string upon which partitions is to be calculated.
k – An integer specifying the number of parts that the partition should contain.
Returns: Returns the number of partitions that have given number of parts.
示例 #1:
# import sympy
from sympy import *
items = "aaa"
k = 2
print("Value of k = {} and the items are = {}".format(k, items))
# Use sympy.nT() method
partitions = nT(items, k)
print("Partitions : {}".format(partitions))
输出:
Value of k = 2 and the items are = aaa
Partitions : 1
示例 #2:
# import sympy
from sympy import *
items = [1, 3, 2, 5, 4]
k = 3
print("Value of k = {} and the items are = {}".format(k, items))
# Use sympy.nT() method
partitions = nT(items, k)
print("Partitions : {}".format(partitions))
输出:
Value of k = 3 and the items are = [1, 3, 2, 5, 4]
Partitions : 25