Files
30-seconds-of-code/snippets/key_of_max.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

440 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Key of max value dictionary beginner 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