为什么 python "in"语句以这种方式计算?



抱歉,我想不出更具描述性的标题。这不是特别重要,而是我发现的python 3.8(至少(中的一个奇怪的怪癖,我想我不能是唯一一个注意到这一点的人,并且可能有一个合理的解释:

>>> 'foo' in 'foobar' == True
False

它也可以以另一种方式工作:

>>> True == 'foo' in 'foobar'
False

但是,从逻辑上讲,我认为这应该是真的,因为

>>> 'foo' in 'foobar'
True
>>> True == True
True

我假设这是某种操作顺序错误,但是当我尝试对其进行分组时,我得到

>>> ('foo' in 'foobar') == True
True
>>> 'foo' in ('foobar' == True)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: argument of type 'bool' is not iterable

在这一点上,我主要是真的很好奇,如果有人能解释这一点,那就太好了!

由于运算符链接,表达式等效于:

('foo' in 'foobar') and ('foobar' == True)

由于'foobar' == TrueFalse的,整个表达式是False的。

相关内容

  • 没有找到相关文章

最新更新