为什么(1 == True)评估为False?

当我看到这个问题的答案时,我发现我不明白我自己的答案。

我真的不明白这是如何被parsing。 为什么第二个例子返回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 

感谢您的帮助。 我想我一定会错过一些非常明显的东西。


我认为这与链接的副本有细微的差别:

为什么expression式0 <0 == 0在Python中返回False? 。

这两个问题都与人的理解expression有关。 在我看来,似乎有两种评估expression的方式。 当然,这两者都不是正确的,但在我的例子中,最后的解释是不可能的。

看着0 < 0 == 0你可以想象每一个被评估和expression意义:

 >>> (0 < 0) == 0 True >>> 0 < (0 == 0) True 

所以链接回答为什么这个评估False

 >>> 0 < 0 == 0 False 

但是用我的例子1 in ([1,0] == True)作为一个expression式是没有意义的,所以不是有两个(不可否认的)可能的解释,而只有一个似乎是可能的:

 >>> (1 in [1,0]) == True 

Python实际上在这里应用比较运算符链接。 expression式被翻译成

 (1 in [1, 0]) and ([1, 0] == True) 

这显然是False

这也发生像expression式

 a < b < c 

其中翻译为

 (a < b) and (b < c) 

(没有评估b两次)。

有关更多详细信息,请参阅Python语言文档 。