当列表中的项目类型不同时,max函数如何工作?
例如,以下代码返回[1,'3']
max([1,52,53],[1,'3']) => [1,'3']
答案 0 :(得分:6)
在Python2中,不同类型对象的默认比较是使用其类型的 id 进行比较(通过将对象指针转换为整数获得)。这是指向来源的链接:http://hg.python.org/cpython/file/2.7/Objects/object.c#l757
在我的构建中,这是类型的排序:
>>> sorted([bool, int, float, long, list, tuple, dict, str, unicode])
[<type 'bool'>, <type 'float'>, <type 'int'>, <type 'list'>, <type 'long'>,
<type 'dict'>, <type 'str'>, <type 'tuple'>, <type 'unicode'>]
数字(复杂除外)具有允许基于数值进行交叉类型比较的比较方法(即浮点数可以与int进行比较)。
无对象是特殊的。它比其他所有东西都要少。
要查看所有内容,请使用排序查看订购:
>>> sorted(zoo)
[None, -5, -5.0, 0, 0.0, -0.0, False, True, 10, 10.0, 11.5, {},
{'abc': 10}, {'lmno': 20}, [], [1, 2], [1, 2, 3], [1, [2, 3]],
'', u'', 'alpha', u'alpha', 'bingo', 'cat', (), (1, 2),
(1, 2, 3), (1, (2, 3)), u'bingo', u'cat']
答案 1 :(得分:5)
在Python 2中,使用特殊逻辑比较不同类型的对象按类型的字符串表示。有关详细信息,请参阅Raymond的answer。
在Python 3中,此代码将引发异常:
Traceback (most recent call last):
File "prog.py", line 1, in <module>
max([1,52,53],[1,'3'])
TypeError: unorderable types: str() > int()
答案 2 :(得分:3)
这两个元素的确为whatever the >
operator does。