What is the specific code, in order, being executed when I ask for something like
>>> 1 <= 3 >= 2 True
If both have equal pr
Both have the same precedence, but are evaluated from left-to-right according to the documentation. An expression of the form a <= b <= c gets expanded to a <= b and b <= c.
a <= b <= c
a <= b and b <= c