436 B
436 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Key of max value | snippet | python |
|
succulent-7 | 2021-01-07T23:15:48+02:00 |
Finds the key of the maximum value in a dictionary.
- Use
max()with thekeyparameter set todict.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