Python sympy.is_real方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

SymPy 教程