如果list不仅仅包含 Student 类,则 __cmp__ 可能会报错: L = [Student('Tim', 99), Student('Bob', 88), 100, 'Hello'] print sorted(L) 请思考如何解决。
L = [Student('Tim', 99), Student('Bob', 88), 100, 'Hello'] print sorted()
L = [Student('Tim', 99), Student('Bob', 88), 100, 'Hello'] print sorted()
2015-10-15
举报