当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.is_algebraic用法及代码示例


借助sympy.is_algebraic方法,我们可以检查天气元素是否是代数的,此方法将返回布尔值,即True或False。

用法: sympy.is_algebraic
返回: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



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.is_algebraic method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。