Skip to content

Home

Key of min value

Finds the key of the minimum value in a dictionary.

def key_of_min(d):
  return min(d, key = d.get)

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

More like this

Start typing a keyphrase to see matching snippets.