Friday, August 29, 2025
HomeLanguagesPython | sympy from_rgs() method

Python | sympy from_rgs() method

With the help of sympy.combinatorics.Partition.from_rgs() method, we can get the array of subarrays by passing array of indexes and list of members by using sympy.combinatorics.Partition.from_rgs() method.

Syntax : sympy.combinatorics.Partition.from_rgs()

Return : Return the array of subarrays.

Example #1 :
In this example we can see that by using sympy.combinatorics.Partition.from_rgs() method, we are able to get the array of subarray by passing array of indexes and list of members as passed by parameters.




# import sympy and Relational
from sympy.combinatorics.partitions import Partition
from sympy import * 
  
x, y = symbols('x y')
  
# Using from sympy.combinatorics.Partition.from_rgs() method
gfg = Partition.from_rgs([0, 1, 2, 0, 1, 2], list('abcdef'))
  
print(gfg)


Output :

{{a, d}, {b, e}, {c, f}}

Example #2 :




# import sympy and Relational
from sympy.combinatorics.partitions import Partition
from sympy import * 
  
x, y = symbols('x y')
  
# Using from sympy.combinatorics.Partition.from_rgs() method
gfg = Partition.from_rgs([0, 1, 2, 0, 1, 2, 3, 4, 3, 4, 0, 1, 5],
                          list('abcdefghijklm'))
  
print(gfg)


Output :

{{m}, {c, f}, {g, i}, {h, j}, {a, d, k}, {b, e, l}}

Last Updated :
13 Aug, 2019
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32246 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11835 POSTS0 COMMENTS
Shaida Kate Naidoo
6729 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS