在simpy模块中,我们可以测试给定数字n是否为负sympy.is_negative()
函数。
用法: sympy.is_negative(n) 参数: n; number to be tested 返回: bool value result
代码1:
# Python program to check negative number
# using sympy.is_negative() method
# importing sympy module
from sympy import *
# calling is_negative function on differnet numbers
geek1 = simplify(-21).is_negative
geek2 = simplify(0).is_negative
print(geek1)
print(geek2)
输出:
True False
代码2:
# Python program to check negative number
# using sympy.is_negative() method
# importing sympy module
from sympy import *
# calling is_negative function on differnet numbers
geek = simplify(-002).is_negative
print(geek)
输出:
True
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.access()用法及代码示例
- Python dict pop()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.nP()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | sympy.is_negative() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。