Saturday, September 21, 2024
Google search engine
HomeLanguagesPython | sympy IntegerPartition() method

Python | sympy IntegerPartition() method

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]

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments