Contact: aviboots(AT)netvision.net.il
39,955 questions
51,897 answers
573 users
from collections import Counter dic = {'a':13, 'b':96, 'c':8, 'd':24, 'e':36, 'f':17} top_keys = set() for key, val in Counter(dic).most_common(2): top_keys.add(key) print(top_keys) ''' run: {'e', 'b'} '''
dic = {'a':13, 'b':96, 'c':8, 'd':24, 'e':36, 'f':17, 'g':6} keys = sorted(dic, key=dic.get, reverse=True)[:2] print(keys) ''' run: ['b', 'e'] '''