借助於sympy.partition()方法,我們可以在SymPy中找到分區號。
分區(n)-
分區號是整數pn的序列,表示將n表示為自然數之和(與順序無關)的不同方式的數目。 pn的生成函數由-。
用法: partition(n)
參數:
n -它表示要計算的分區號的編號。
返回:返回nth分區號。
範例1:
# import sympy
from sympy import *
n = 7
print("Value of n = {}".format(n))
# Use sympy.partition() method
nth_partition = partition(n)
print("Value of nth partition number : {}".format(nth_partition))
輸出:
Value of n = 7 Value of nth partition number : 15
範例2:
# import sympy
from sympy import *
n = 10
print("Value of n = {}".format(n))
# Use sympy.partition() method
n_partition = [partition(x) for x in range(1, 11)]
print("N partition number are : {}".format(n_partition))
輸出:
Value of n = 10 N partition number are : [1, 2, 3, 5, 7, 11, 15, 22, 30, 42]
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python sympy.apart()用法及代碼示例
- Python sympy.nC()用法及代碼示例
- Python os.set_blocking()用法及代碼示例
- Python os.getcwd()用法及代碼示例
- Python os.access()用法及代碼示例
- Python dict pop()用法及代碼示例
- Python sympy.Add()用法及代碼示例
- Python sympy.nP()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.partition() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。