Python sympy.GreaterThan()方法
在sympy.GreaterThan()方法的帮助下,我们可以通过使用大于运算符制作一个数学表达式。
语法 : sympy.GreaterThan(var1, var2)
返回:返回数学表达式。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.GreaterThan()方法,我们能够找到大于运算符的表达。
# import sympy
from sympy import * x, y = symbols('x y')
# Using sympy.GreaterThan() method
gfg = GreaterThan(x, 5)
print(gfg)
输出 :
x >= 5
例子#2 :
# import sympy
from sympy import * x, y = symbols('x y')
# Using sympy.GreaterThan() method
gfg = GreaterThan(y, x)
print(gfg)
输出 :
y >= x