當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.nT() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。