Contact: aviboots(AT)netvision.net.il
41,567 questions
54,187 answers
573 users
dic = {'key1':34, 'key2':13, 'key3':89, 'key4':48, 'key5':50} max_key = max(dic, key=dic.get) print(max_key) ''' run: key3 '''