Files
30-seconds-of-code/snippets/key-of-max.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

439 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Key of max value dictionary succulent-7 2021-01-07T23:15:48+02:00 2021-01-07T23:15:48+02:00

Finds the key of the maximum value in a dictionary.

  • Use max() with the key parameter set to dict.get() to find and return the key of the maximum value in the given dictionary.
def key_of_max(d):
  return max(d, key = d.get)
key_of_max({'a':4, 'b':0, 'c':13}) # c