Python | sympy Relational() method

With the help of sympy.core.relational.Relational() method, we are going make the relations between two variables and constants by using sympy.core.relational.Relational() method.
Syntax :
sympy.core.relational.Relational(var1, var2, "rel")Return : Return a relationship between two variables.
Example #1 :
In this example we can see that by using
In this example we can see that by using
sympy.core.relational.Relational() method, we are able to create the relationship between two variables.
# import sympy and Relational from sympy.core.relational import Relational from sympy import *Â Â Â x, y = symbols('x y') Â Â # Using sympy.core.relational.Relational(var1, var2, "rel") method gfg = Relational(x, y, ">=") Â Â print(gfg) |
Output :
x >= y
Example #2 :
# import sympy and Relational from sympy.core.relational import Relational from sympy import *Â Â Â x, y = symbols('x y') Â Â # Using sympy.core.relational.Relational(var1, var2, "rel") method gfg = Relational(x, y, "!=") Â Â print(gfg) |
Output :
Ne(x, y)
<!–
–>

Python | Relational fields in Django models

Relational Operators in Python

Relational plots in Seaborn – Part I

Relational plots in Seaborn – Part II

Python | Sympy Line.is_parallel() method

Python | sympy.GreaterThan() method

Python | sympy.StrictLessThan() method

Python | sympy.LessThan() method

Python | sympy.StrictGreaterThan() method

Python | sympy.ones() method




Please Login to comment…