Why does 4 < '3' return True in Python 2?
Is it because when I place single quotes around a number Python sees it as a string and strings are bigger than numbers?
|
Why does Is it because when I place single quotes around a number Python sees it as a string and strings are bigger than numbers? | |||||||
feedback
|
|
Yes, any number will be less than any string (including the empty string) in Python 2. In Python 3, you can't make arbitrary comparisons. You'll get a From the link in eryksun's comment:
So at least in recent versions of CPython 2.x, type names are compared, with an empty string used instead of the type name for any numeric type. | |||||||||||||||
feedback
|
|
From Python v2.7.2 documentation Objects of different types except numbers are ordered by their type names; objects of the same types that don’t support proper comparison are ordered by their address. 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 string and an integer the type names are ordered. "str" is lexicographically after "int", "float", "long", "list", "bool", etc. However a tuple will order higher than a string because "tuple" > "str":
also see comparison uses lexicographical ordering from docs.python.org In Python 3.x the behaviour has been changed so that attempting to order an integer and a string will raise an error:
| |||||||||||||||
feedback
|
|
The default comparison operation in cpython 2 is based on the memory address of the object in question. From
This works really well for equality and inequality, but can be counter-intuitive for the ordering operations, so it has been changed for Python 3. Indeed, 2.7 will issue a warning for such usages when given the To see the memory address of a given object, you can use the Small integers just happen to have smaller memory addresses than short strings, at least in certain python versions, probably due to the caching used by cpython to enhance performance. | |||||
feedback
|