Open In App

Python | sympy.as_coeff_add() method

Last Updated : 26 Jul, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.as_coeff_add() method, we can separate the mathematical expression by + sign and return a tuple by using sympy.as_coeff_add() method.
Syntax : sympy.as_coeff_add() Return : Return the tuple of elements separated by + sign.
Example #1 : In this example we can see that by using sympy.as_coeff_add() method, we are able to get the tuple of elements separated by + sign. Python3 1=1
# import sympy
from sympy import * 

x, y = symbols('x y')

# Using sympy.as_coeff_add() method
gfg = (x + 2 * y).as_coeff_add()

print(gfg)
Output :
(0, (x, 2*y))
Example #2 : Python3 1=1
# import sympy
from sympy import * 

x, y = symbols('x y')

# Using sympy.as_coeff_add() method
gfg = (x**2 + 4 * x + 4).as_coeff_add()

print(gfg)
Output :
(4, (x**2, 4*x))

Article Tags :
Practice Tags :

Similar Reads