Python | sympy.as_poly() method

With the help of sympy.as_poly() method, we can make the mathematical function into a polynomial object by using sympy.as_poly() method.
Syntax :
sympy.as_poly()
Return : Return the polynomial object.
Example #1 :
In this example we can see that by using sympy.as_poly() method, we are able to get the polynomial from mathematical operation.
# import sympy from sympy import *Â Â # Use sympy.as_poly() method x = symbols('x') gfg = (x**2 + 4 * x + 16).as_poly() Â Â print(gfg) |
Output :
Poly(x**2 + 4*x + 16, x, domain=’ZZ’)
Example #2 :
# import sympy from sympy import *Â Â # Use sympy.as_poly() method x = symbols('x') gfg = (x + 5 * x + 6).as_poly() Â Â print(gfg) |
Output :
Poly(6*x + 6, x, domain=’ZZ’)



