Skip to content

Home

Key of max value

Finds the key of the maximum value in a dictionary.

def key_of_max(d):
  return max(d, key = d.get)

key_of_max({'a':4, 'b':0, 'c':13}) # c

More like this

Start typing a keyphrase to see matching snippets.