Sunday, September 22, 2024
Google search engine
HomeLanguagesPython | sympy.as_coefficient() method

Python | sympy.as_coefficient() method

With the help of sympy.as_coefficient() method, we can find the coefficient of any element in the mathematical expression by using sympy.as_coefficient() method.

Syntax : sympy.as_coefficient()
Return : Return the coefficient of any element.

Example #1 :
In this we can see that by using sympy.as_coefficient() method, we are able to get the values of coefficient of any element that is passed as parameter.




# import sympy
from sympy import * 
  
x = symbols('x')
  
# Use sympy.as_coefficient() method
gfg = x**3 + 21 * x + 12
  
print(gfg.as_coefficient(x))


Output :

21

Example #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))


Output :

121

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments