Open In App

Python | sympy IntegerPartition() method

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report

With the help of sympy.combinatorics.partitions.IntegerPartition() method, we can get the elements in an array of subarrays that is passed as parameters in sympy.combinatorics.Partition().rank method.

Syntax : sympy.combinatorics.partitions.IntegerPartition()
Return : Return the partition of integer values.

Example #1 :
In this example we can see that by using sympy.combinatorics.partitions.IntegerPartition() method, we are able to get the partition of integer values.




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


Output :

[3, 2, 1]

Example #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)


Output :

[5, 4, 3, 2, 1]



Next Article
Article Tags :
Practice Tags :

Similar Reads