Python| sympy.is_algebraic 方法
借助sympy.is_algebraic
方法,我们可以检查天气元素是否为代数,该方法将返回布尔值,即 True 或 False。
Syntax : sympy.is_algebraic
Return : Return True if algebraic else False.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.is_algebraic
方法,我们能够检查代数值,它将返回一个布尔值。
# import sympy
from sympy import *
x = symbols('x')
# Use sympy.is_algebraic method
gfg = simplify(2 * x).is_algebraic
print(gfg)
输出 :
True
示例 #2:
# import sympy
from sympy import *
# Use sympy.is_algebraic method
gfg = simplify(5I).is_algebraic
print(gfg)
输出 :
False