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