Contact: aviboots(AT)netvision.net.il
39,009 questions
50,723 answers
573 users
dic = {'ww': 2, 'bb': 6, 'yy': 7, 'zz': 8, 'qq': 1, 'ee': 5} print(sorted(dic, reverse = True)) ''' run: ['zz', 'yy', 'ww', 'qq', 'ee', 'bb'] '''