gpt4 book ai didi

python - 为什么 "if not a := say_empty()"会引发 SyntaxError?

转载 作者:行者123 更新时间:2023-12-03 23:00:25 25 4
gpt4 key购买 nike

PEP 572引入赋值运算符(“海象运算符”)。
以下代码有效,并输出 empty

def say_empty():
return ''

if a := say_empty():
print("not empty")
else:
print("empty")
我试图否定条件:
def say_empty():
return ''

if not a := say_empty():
print("empty")
else:
print("not empty")
这引发了 SyntaxError
    if not a := say_empty():
^
SyntaxError: cannot use assignment expressions with operator
给定的错误很明显,但是我想知道为什么要设置此限制。
PEP 572 解释了为什么在迭代中使用赋值是有问题的(并引发 SyntaxError ),但我没有找到任何关于 bool 赋值的信息。

最佳答案

Operator precedence表示 :=优先级低于 not .所以not a :=读作试图分配给 not a ,因此出现语法错误。
您可以使用括号来阐明含义:

if not (a := say_empty()):
...

关于python - 为什么 "if not a := say_empty()"会引发 SyntaxError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66289224/

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