📜  Python|同情 as_dict() 方法

📅  最后修改于: 2022-05-13 01:54:46.992000             🧑  作者: Mango

Python|同情 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)

输出 :

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

输出 :