📜  Python| sympy.as_coefficient() 方法

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

Python| sympy.as_coefficient() 方法

借助sympy.as_coefficient()方法,我们可以使用sympy.as_coefficient()方法求数学表达式中任意元素的系数。

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

输出 :

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

输出 :