当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy as_dict()用法及代码示例


借助sympy.combinatorics.IntegerPartition().as_dict()方法,我们可以使用以下方法从子数组中获取整数元素的字典及其系数值sympy.combinatorics.IntegerPartition().as_dict()方法。

用法: sympy.combinatorics.IntegerPartition().as_dict()
返回: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}



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy as_dict() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。