Python sympy from_rgs()方法

Python sympy from_rgs()方法

sympy.combinatorics.Partition.from_rgs()方法的帮助下,我们可以通过传递索引数组和成员列表来获得子数组。

语法 : sympy.combinatorics.Partition.from_rgs()

返回:返回子数组。

例子#1 :
在这个例子中,我们可以看到,通过使用sympy.combinatorics.Partition.from_rgs()方法,我们能够通过传递索引数组和成员列表作为参数来获得子数组的阵列。

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

输出 :

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

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

输出 :

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程