Python sympy.partition()方法
在sympy.partition()方法的帮助下,我们可以在SymPy中找到分区号。
partition(n) –
分割数是一连串的整数p n,表示n作为自然数之和的不同表示方法的数量(顺序不相关)。p n的生成函数是由-给出的。
语法: partition(n)
参数 :
n –它表示要计算的分区号的数量。
返回:返回第n个分区的编号。
示例 #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]