我有一个 Python 对象列表,我想按对象本身的属性对其进行排序。该列表如下所示:
>>> ut [<Tag: 128>, <Tag: 2008>, <Tag: <>, <Tag: actionscript>, <Tag: addresses>, <Tag: aes>, <Tag: ajax> ...]
每个对象都有一个计数:
>>> ut[1].count 1L
我需要按计数降序对列表进行排序。
我已经看到了几种方法,但我正在寻找 Python 中的最佳实践。
# To sort the list in place... ut.sort(key=lambda x: x.count, reverse=True) # To return a new list, use the sorted() built-in function... newlist = sorted(ut, key=lambda x: x.count, reverse=True)
更多关于按键排序的信息。