Python| sympy.as_coefficient() 方法
借助sympy.as_coefficient()
方法,我们可以使用sympy.as_coefficient()
方法求数学表达式中任意元素的系数。
Syntax : sympy.as_coefficient()
Return : Return the coefficient of any element.
示例 #1:
在此我们可以看到,通过使用sympy.as_coefficient()
方法,我们能够获取作为参数传递的任何元素的系数值。
# import sympy
from sympy import *
x = symbols('x')
# Use sympy.as_coefficient() method
gfg = x**3 + 21 * x + 12
print(gfg.as_coefficient(x))
输出 :
21
示例 #2:
# import sympy
from sympy import *
x = symbols('x')
# Use sympy.as_coefficient() method
gfg = x**3 + 21 * x**2 + 121x + 4
print(gfg.as_coefficient(x))
输出 :
121