Python|同情 as_dict() 方法
在sympy.combinatorics.IntegerPartition().as_dict()
方法的帮助下,我们可以使用sympy.combinatorics.IntegerPartition().as_dict()
方法从子数组中获取整数元素的字典及其系数值。
Syntax : sympy.combinatorics.IntegerPartition().as_dict()
Return : Return the dictionary having elements along with it’s coefficient values.
示例 #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}