最佳答案
我有一个Python对象列表,我想按每个对象的特定属性排序:
>>> ut[Tag(name="toe", count=10), Tag(name="leg", count=2), ...]
如何按.count
降序对列表进行排序?