Open In App

Python | sympy.Add() method

Last Updated : 11 Jul, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.Add() method, we can add two variables and can form a mathematical expression by using sympy.Add() method.
Syntax : sympy.Add() Return : Return the addition of two variables.
Example #1 : In this example we can see that by using sympy.Add() method, we are able to add the two variables and we can also form mathematical expression. Python3 1=1
# import sympy
from sympy import * x, y = symbols('x y')

# Use sympy.Add() method
gfg = Add(x, y)
  
print(gfg)
Output :
x+y
Example #2 : Python3 1=1
# import sympy
from sympy import * x, y = symbols('x y')

# Use sympy.Mul() method
gfg = Add(Mul(x, y), Mul(x, x))
  
print(gfg)
Output :
x**2 + x*y

Next Article
Article Tags :
Practice Tags :

Similar Reads