operator.not_() 函数
operator.not_()
函数是一个库函数operator
模块,用于对给定值执行 "NOT operation" 并返回True
如果给定值为零或任何假值,False
,否则。
模块:
import operator
用法:
operator.not_(x)
参数:
x
– 要对其执行 NOT 操作的值。
返回值:
这个方法的返回类型是bool
,它返回True
如果x
为零或任何假值,False
,否则。
例:
# Python operator.not_() Function Example
import operator
print("operator.not_(True):", operator.not_(True))
print("operator.not_(False):", operator.not_(False))
print()
x = 1
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
x = 10
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
x = -10
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
x = 0
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
x = "Hello"
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
x = ""
print("x:", x)
print("operator.not_(x):", operator.not_(x))
print()
输出:
operator.not_(True):False operator.not_(False):True x:1 operator.not_(x):False x:10 operator.not_(x):False x:-10 operator.not_(x):False x:0 operator.not_(x):True x:Hello operator.not_(x):False x: operator.not_(x):True
相关用法
- Python operator.ne()用法及代码示例
- Python operator.truth()用法及代码示例
- Python operator.le()用法及代码示例
- Python operator.ge()用法及代码示例
- Python operator.eq()用法及代码示例
- Python operator.lt()用法及代码示例
- Python operator.gt()用法及代码示例
- Python open()用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.read()用法及代码示例
- Python os.DirEntry.inode()用法及代码示例
- Python os.closerange()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.chflags()用法及代码示例
- Python os.WCOREDUMP()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.ctermid()用法及代码示例
- Python os.mkfifo()用法及代码示例
- Python os.mkdir()用法及代码示例
- Python os.close()用法及代码示例
注:本文由纯净天空筛选整理自 Python operator.not_() Function with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。