Python sympy.is_real方法
在sympy.is_real方法的帮助下,我们可以检查元素是否真实,该方法将返回布尔值,即True或False。
语法 : sympy.is_real
返回:如果是真实的,则返回真,否则返回假。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.is_real方法,我们能够检查真实值,它将返回一个布尔值。
# import sympy
from sympy import *
# Use sympy.is_real method
gfg = simplify(2).is_real
print(gfg)
输出 :
True
例子#2 :
# import sympy
from sympy import *
# Use sympy.is_real method
gfg = simplify(5.5).is_real
print(gfg)
输出 :
True