将布尔值与==
Python 中的作品进行比较。但是当我应用布尔not
运算符时,结果是语法错误:
Python 2.7 (r27:82500, Sep 16 2010, 18:02:00)
[GCC 4.5.1 20100907 (Red Hat 4.5.1-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> True == True
True
>>> False == False
True
>>> True is not False
True
>>> True == not False
File "<stdin>", line 1
True == not False
^
SyntaxError: invalid syntax
>>>
为什么这是语法错误?我希望not False
成为一个返回布尔值的表达式,并且True == <x>
在任何具有有效语法的表达式的任何地方<x>
都是有效的语法。