gpt4 book ai didi

python - 为什么 'True == not False' 是语法错误?

转载 作者:IT老高 更新时间:2023-10-28 21:57:35 27 4
gpt4 key购买 nike

比较 boolean 值与 ==在 Python 中工作。但是当我应用 boolean 值 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是一个返回 boolean 值的表达式,True == <x>成为有效的语法 <x>是具有有效语法的表达式。

最佳答案

它与 operator precedence in Python 有关(解释器认为你在​​比较 True 和 not,因为 == 的优先级高于 not)。您需要一些括号来阐明操作顺序:

True == (not False)

一般情况下,您不能在没有括号的比较右侧使用 not。但是,我想不出你需要在比较右侧使用 not 的情况。

关于python - 为什么 'True == not False' 是语法错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6100305/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com