python dictionary check max value code example
Example 1: python find the key with max value
a_dictionary = {"a": 1, "b": 2, "c": 3}
# get key with max value
max_key = max(a_dictionary, key=a_dictionary.get)
print(max_key)
Example 2: get max n values in dict py
import heapq
from operator import itemgetter
n = 3
items = {'a': 7, 'b': 12, 'c': 9, 'd': 0, 'e': 24, 'f': 10, 'g': 24}
topitems = heapq.nlargest(n, items.items(), key=itemgetter(1)) # Use .iteritems() on Py2
topitemsasdict = dict(topitems)