好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

为何1in[1,0]==True执行结果是False

为何1 in [1,0] == True执行结果是False

在python中运行发现:

>>> 1 in [1,0] == True     # This is strangeFalse
>>> False 

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

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

这显然是False。

这也适用于像这样的表达式

a < b < c 

转化为

(a < b) and (b < c) 

以上就是为何1 in [1,0] == True执行结果是False的详细内容,更多请关注Gxl网其它相关文章!

查看更多关于为何1in[1,0]==True执行结果是False的详细内容...

  阅读:52次