python 根据两个字段排序, 一个升序, 一个降序

from collections import Counter
c = Counter(input())
l=sorted(c.items(), key=lambda s:(-s[1], s[0]))
for i in l[:3]:
    print(' '.join(map(str, list(i))))

 

posted on 2019-08-25 16:52  TMatrix52  阅读(1076)  评论(0编辑  收藏  举报

导航