Python| sympy.as_coefficients_dict() 方法
借助sympy.as_coefficients_dict()
方法,我们可以使用sympy.as_coefficients_dict()
方法找到数学表达式中存在的字典中所有元素的系数。
Syntax : sympy.as_coefficients_dict()
Return : Return the coefficients of mathematical expression in the dictionary.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.as_coefficients_dict()
方法,我们可以找到数学表达式中的所有系数并返回它的字典。
# import sympy
from sympy import *
x = symbols('x')
# Use sympy.as_coefficients_dict() method
gfg = x**3 + 21 * x + 12
print(gfg.as_coefficients_dict())
输出 :
defaultdict(, {1: 12, x**3: 1, x: 21})
示例 #2:
# import sympy
from sympy import *
x = symbols('x')
# Use sympy.as_coefficients_dict() method
gfg = x**3 + 21 * x**2 + 121 * x + 4
print(gfg.as_coefficients_dict())
输出 :
defaultdict(, {1: 4, x**3: 1, x**2: 21, x: 121})