📜  Python|同情 IntegerPartition() 方法

📅  最后修改于: 2022-05-13 01:54:34.064000             🧑  作者: Mango

Python|同情 IntegerPartition() 方法

sympy.combinatorics.partitions.IntegerPartition()方法的帮助下,我们可以获取子数组数组中的元素,这些子数组在sympy.combinatorics.Partition().rank方法中作为参数传递。

示例 #1:
在这个例子中,我们可以看到通过使用sympy.combinatorics.partitions.IntegerPartition()方法,我们能够得到整数值的分区。

# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
   
# Using sympy.combinatorics.partitions.IntegerPartition() method
gfg = IntegerPartition([1] + [2, 3])
   
print(gfg)

输出 :

示例 #2:

# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
   
# Using sympy.combinatorics.partitions.IntegerPartition() method
gfg = IntegerPartition([1] + [2, 3] + [4] + [5])
   
print(gfg)

输出 :