为什么不对。
def __cmp__(self, s): if self.name < s.name: return -1 elif self.name < s.name: return 1 else: return 0 L = [Student('Tim', 99), Student('Bob', 88), Student('Alice', 99)] print sorted(L) 为什么我这个错的,也不是按照从低到高排列
def __cmp__(self, s): if self.name < s.name: return -1 elif self.name < s.name: return 1 else: return 0 L = [Student('Tim', 99), Student('Bob', 88), Student('Alice', 99)] print sorted(L) 为什么我这个错的,也不是按照从低到高排列
2015-11-16
举报