时间:2021-07-01 10:21:17 帮助过:97人阅读
在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网其它相关文章!