作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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
给定的错误很明显,但是我想知道为什么要设置此限制。
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/
PEP 572引入赋值运算符(“海象运算符”)。 以下代码有效,并输出 empty def say_empty(): return '' if a := say_empty(): pr
我是一名优秀的程序员,十分优秀!