Python| sympy.is_number 方法
借助sympy.is_number
方法,我们可以检查元素是否为数字,如果使用sympy.is_number
方法找到数字,它将返回一个布尔值。
Syntax : sympy.is_number
Return : Return a boolean value if number is found.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.is_number()
方法,我们能够通过获取布尔值来检测数字。
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.is_number method
gfg = cos(2).is_number
print(gfg)
输出 :
True
示例 #2:
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.is_number method
gfg = sin(x).is_number
print(gfg)
输出 :
False