Python sympy.nT()方法

Python sympy.nT()方法

sympy.nT()方法的帮助下,我们可以计算出在SymPy中可以有指定数量的分区的数量。

语法: nT(items, k)

参数:
items – 一个整数、一个列表或一个字符串,据此计算分区。
k – 一个整数,指定分区应包含的部分数量。

返回:返回具有给定数量的部分的分区数量。

示例 #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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程