最佳答案
当我在看 这个问题的答案时,我发现我不明白我自己的答案。
我真的不明白这是如何解析的。为什么第二个示例返回 False?
>>> 1 in [1,0] # This is expected
True
>>> 1 in [1,0] == True # This is strange
False
>>> (1 in [1,0]) == True # This is what I wanted it to be
True
>>> 1 in ([1,0] == True) # But it's not just a precedence issue!
# It did not raise an exception on the second example.
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
1 in ([1,0] == True)
TypeError: argument of type 'bool' is not iterable
谢谢你的帮助,我想我肯定漏掉了什么很明显的东西。
我认为这与链接副本有微妙的不同:
为什么表达式0 < 0 = = 0在 Python 中返回 False? 。
这两个问题都与人类对表达的理解有关。(在我看来)似乎有两种方法来评价这个表达。当然,这两种解释都不正确,但在我的例子中,最后一种解释是不可能的。
看着 0 < 0 == 0
,你可以想象每一半都被计算出来,并且作为一个表达式是有意义的:
>>> (0 < 0) == 0
True
>>> 0 < (0 == 0)
True
因此,这个链接解释了为什么它会评估 False
:
>>> 0 < 0 == 0
False
但是在我的例子中,1 in ([1,0] == True)
作为一个表达式是没有意义的,所以并不存在两种(公认错误的)可能的解释,只有一种似乎是可能的:
>>> (1 in [1,0]) == True