Python sympy.is_constant()方法
在sympy.is_constant()方法的帮助下,我们可以检查元素是否是常数,如果发现是常数,将通过sympy.is_constant()方法返回一个布尔值。
语法 : sympy.is_constant()
返回:如果找到常数,则返回一个布尔值。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.is_constant()方法,我们能够通过获得布尔值来检测常数。
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.is_constant() method
gfg = simplify(2).is_constant()
print(gfg)
输出 :
True
例子#2 :
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.is_constant() method
gfg = simplify(sin(x)).is_constant()
print(gfg)
输出 :
False