在simpy模块中,我们可以测试给定数字n是否为奇数 sympy.is_odd()
函数。
用法: sympy.is_odd(n) 参数: n; number to be tested 返回: bool value result
代码1:
# Python program to check odd number
# using sympy.is_odd() method
# importing sympy module
from sympy import *
# calling is_odd function on differnet numbers
geek1 = simplify(30).is_odd
geek2 = simplify(13).is_odd
print(geek1)
print(geek2)
输出:
False True
代码2:
# Python program to check odd number
# using sympy.is_odd() method
# importing sympy module
from sympy import *
# calling is_odd function on differnet numbers
geek = simplify(2).is_odd
print(geek)
输出:
False
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | sympy.is_odd() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。