使用两个键(频率和字典顺序)在Python中对字典进行排序

时间:2014-09-21 10:00:38

标签: python list sorting python-3.x dictionary

我在Python中有一本字典,如下所示: {'c': 3, 'b': 3, 'aa': 2, 'a': 2}

我希望像这样打印出来:

b
c
a
aa

我需要先用第二个键对字典进行排序,如果有任何冲突,按字典顺序对它们进行排序。

我搜索过,找不到任何解决方案。这是我已经尝试过的:

temp = {'c' : 3, 'b': 3, 'aa' : 2, 'a' : 2}
results = []
for key, value in temp.items():
    results.append([key, value])

results.sort(key = operator.itemgetter(1,0), reverse = True)

for result in results:
    print(result)

这不起作用,但结果如下:

c
b
aa
a

输出应为:

b
c
a
aa

我感谢任何帮助! (注意:使用Python 3)

1 个答案:

答案 0 :(得分:3)

>>> d = {'c': 3, 'b': 3, 'aa': 2, 'a': 2}
>>> sorted(d, key=lambda key: (-d[key], key))
['b', 'c', 'a', 'aa']

-用于使值按顺序降序排列。