Answers for "return key and value for key with highest value in dictionary"

1

find the max value in dictionary python

my_dict = {'a': 5, 'b': 10, 'c': 6, 'd': 12, 'e': 7}
max(my_dict, key=my_dict.get) # returns 'd'
Posted by: Guest on October-10-2020
2

python max key dictionary key getter

from operator import itemgetter

items = [
    {'a': 1, 'b': 99},
    {'a': 2, 'b': 88},
    {'a': 3, 'b': 77},
]

print(max(items, key=itemgetter('a')))
print(max(items, key=itemgetter('b')))
Posted by: Guest on September-09-2020

Code answers related to "return key and value for key with highest value in dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language