Python sympy IntegerPartition()方法

Python sympy IntegerPartition()方法

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

语法 : sympy.combinatorics.partitions.IntegerPartition()
返回:返回整数值的分区。

例子#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)

输出 :

[3, 2, 1]

例子#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)

输出 :

[5, 4, 3, 2, 1]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程