Pythonは連鎖比較して特別なことを行います。
次が異なって評価されます。最初の比較がFalse
であればいずれの場合も
x > y > z # in this case, if x > y evaluates to true, then
# the value of y is being used to compare, again,
# to z
(x > y) > z # the parenth form, on the other hand, will first
# evaluate x > y. And, compare the evaluated result
# with z, which can be "True > z" or "False > z"
しかし、文の残りの部分は見れません。上記の最初の規則性を実証するためにあなたの特定のケースについては
、また
1 in [] in 'a' # this is false because 1 is not in []
(1 in []) in a # this gives an error because we are
# essentially doing this: False in 'a'
1 in ([] in 'a') # this fails because you cannot do
# [] in 'a'
、これらはTrueに評価文です。
1 in [1,2] in [4,[1,2]] # But "1 in [4,[1,2]]" is False
2 <4> 1 # and note "2 < 1" is also not true
Pythonの演算子の優先順位:http://docs.python.org/reference/expressions.html#summary
http://docs.python.org/reference/expressions.html#not-inここに記載されている動作をする可能性があります。これは、 'a millimoose
@millimoose:ええと、私は "比較"演算子として 'in'を考えなかった。 :\ – Mehrdad
こんにちは[どのような種類のパーサーは、Pythonインタープリタで使用されますか?](http://stackoverflow.com/questions/15532616/what-type-of-parser-is-used-in-python-interpreter) –