['a', 'd', 'c']
编辑日期: 2024-11-28 文章阅读: 次
@author jackzhenguo
@desc
@date 2019/4/19
76 Topn 字典
返回字典d前n个最大值对应的键
from heapq import nlargest
def topn_dict(d, n):
return nlargest(n, d, key=lambda k: d[k])
测试:
topn_dict({'a': 10, 'b': 8, 'c': 9, 'd': 10}, 3)
上一个例子 下一个例子
Site Views:
Visitors: