Python n'choses spéciales avec enchaîné les comparaisons.
Les éléments suivants sont évalués de façon différente:
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"
Dans les deux cas, si la première comparaison, est - False
, le reste de l'énoncé ne sera pas examiné.
Pour votre cas particulier,
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'
Aussi, afin de démontrer la première règle ci-dessus, ce sont des états qui sont évaluées à 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
La priorité de python opérateurs: http://docs.python.org/reference/expressions.html#summary