Python sympy as_dict()方法
在sympy.combinatorics.IntegerPartition().as_dict()方法的帮助下,我们可以通过sympy.combinatorics.IntegerPartition().as_dict()方法从子数组中获得整数元素的字典以及它的系数值。
语法 : sympy.combinatorics.IntegerPartition().as_dict()
返回 : 返回有元素的字典,以及它的系数值。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.combinatorics.IntegerPartition().as_dict()方法,我们能够得到整数值的字典和它的系数值。
# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
# Using sympy.combinatorics.partitions.IntegerPartition().as_dict() method
gfg = IntegerPartition([1] + 3 * [2, 3]).as_dict()
print(gfg)
输出 :
{3: 3, 2: 3, 1: 1}
例子#2 :
# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
# Using sympy.combinatorics.partitions.IntegerPartition().as_dict() method
gfg = IntegerPartition([1] + 2 * [2, 3] + 4 * [4] + 5 * [5]).as_dict()
print(gfg)
输出 :
{5: 5, 4: 4, 3: 2, 2: 2, 1: 1}