Python Sympy partitions.RGS_unrank()方法
在sympy.combinatorics.partitions.RGS_unrank()方法的帮助下,我们可以得到sympy.combinatorics.partitions.RGS_unrank()方法中作为参数传递的大小的无等级增长字符串。
语法 : sympy.combinatorics.partitions.RGS_unrank()
返回 : 返回一个大小为m的无等级增长字符串阵列。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.combinatorics.partitions.RGS_unrank()方法,我们能够得到大小为m的未排序的增长字符串数组。
# import sympy and RGS_unrank
from sympy.combinatorics.partitions import RGS_unrank
from sympy import *
x, y = symbols('x y')
# Using sympy.combinatorics.partitions.RGS_unrank method
gfg = RGS_unrank(51, 8)
print(gfg)
输出 :
[0, 0, 0, 0, 1, 2, 3, 4]
例子#2 :
# import sympy and RGS_unrank
from sympy.combinatorics.partitions import RGS_unrank
from sympy import *
x, y = symbols('x y')
# Using sympy.combinatorics.partitions.RGS_unrank method
gfg = RGS_unrank(101, 10)
print(gfg)
输出 :
[0, 0, 0, 0, 0, 1, 1, 1, 0, 2]