Python| sympy.is_constant() 方法
借助sympy.is_constant()
方法,我们可以检查元素是否为常量,如果找到常量,则使用sympy.is_constant()
方法返回一个布尔值。
Syntax : sympy.is_constant()
Return : Return a boolean value if constant is found.
示例 #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