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


Python operator.not_()用法及代码示例


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.not_() Function with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。