largest value in the dictionary. code example
Example 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'
Example 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')))