Getting key with maximum value in dictionary?

You can use operator.itemgetter for that: And instead of building a new list in memory use stats.iteritems(). The key parameter to the max() function is a function that computes a key that is used to determine how to rank items. Please note that if you were to have another key-value pair ‘d’: 3000 that this method will only return one of the two even though they … Read more