Open In App

Python | sympy IntegerPartition() method

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
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]


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads