Python等价于!操作员?

在C / C ++中,!符号定义为非 运算符。它在Python中的等效项不是operator。如果操作数为false,则返回true,反之亦然

>>> not(True)
False
>>> not(False)
True
>>> not(20>30)
True
>>> not('abc'=='ABC')
True