Python sympy.is_algebraic方法
在sympy.is_algebraic方法的帮助下,我们可以检查元素是否是代数的,这个方法将返回布尔值,即True或False。
语法 : sympy.is_algebraic
返回 : 如果代数性,则返回真,否则返回假。
例子#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