The following snippet is annotated with the output (as seen on ideone.com):
print "100" < "2" # True
print "5" > "9" # False
print "100" < 2 # False
print 100 < "2" # True
print 5 > "9" # False
print "5" > 9 # True
print [] > float('inf') # True
print () > [] # True
Can someone explain why the output is as such?
Implementation details
- Is this behavior mandated by the language spec, or is it up to implementors?
- Are there differences between any of the major Python implementations?
- Are there differences between versions of the Python language?
From the python 2 manual:
When you order two strings or two numeric types the ordering is done in the expected way (lexicographic ordering for string, numeric ordering for integers).
When you order a numeric and a non-numeric type, the numeric type comes first.
When you order two incompatible types where neither is numeric, they are ordered by the alphabetical order of their typenames:
One exception is old-style classes that always come before new-style classes.
There is no language specification. The language reference says:
So it is an implementation detail.
I can’t answer this one because I have only used the official CPython implementation, but there are other implementations of Python such as PyPy.
In Python 3.x the behaviour has been changed so that attempting to order an integer and a string will raise an error: