如果您确实需要自定义排序顺序,那么您可以使用该排序逻辑编写一个自定义对象,该对象将用作下面实际对象的包装器。
from functools import total_ordering
# total_ordering keeps you from having to write each of
# __gt__, __ge__, __lt__, __le__. It requires __eq__ and one of the
# other comparison functions to be defined and the rest are assumed
# in terms of each other. (__ge__ = __gt__ or __eq__, __gt__ = not __le__), etc.
@total_ordering
class CustomSorter(object):
def __init__(self, data):
self.data = data
# the properties here are solely to make the code a little more readable
# in the rich comparators below. You can ignore them if you like.
@property
def serial_number(self):
return self.data[1]["serial_number"]
@property
def site_location(self):
return self.data[1]["site_location"]
def __eq__(self, other):
if not isinstance(other, CustomSorter):
raise NotImplementedError("CustomSorters can only sort with themselves")
return self.data[1] == other.data[1]
def __lt__(self, other):
if not isinstance(other, CustomSorter):
raise NotImplementedError("CustomSorters can only sort with themselves")
if self.site_location == other.site_location:
return self.site_number < other.site_number
else:
return not (self.site_location < other.site_location)
然后使用传统的装饰-排序-取消装饰步骤。
myDict = {
'SER12346': {'serial_num': 'SER12346', 'site_location': 'North America'},
'ABC12345': {'serial_num': 'ABC12345', 'site_location': 'South America'},
'SER12345': {'serial_num': 'SER12345', 'site_location': 'North America'},
'SER12347': {'serial_num': 'SER12347', 'site_location': 'South America'},
'ABC12346': {'serial_num': 'ABC12346', 'site_location': 'Europe'}
}
sorters = [CustomSorter(tup) for tup in myDict.items()]
sorters.sort()
result = [sorter.data for sorter in sorters]
如果你实现一个函数来为你排序,这可能是最好的。
def sort_on(sorter, unsorted):
"""sort_on expects @sorter@ to be a class with rich comparison operations
that is a decorative wrapper around some data to be sorted. Additionally,
@sorter.data@ should refer to the underlying data structure.
"""
decorated = [sorter(unsort) for unsort in unsorted]
decosorted = decorated.sort()
sorted = [decosort.data for decosort in decosorted]
return sorted
result = sort_on(CustomSorter, myDict.items())