427 B
427 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Key of min value | snippet |
|
goat-wooden-cottage | 2021-01-07T23:15:48+02:00 |
Finds the key of the minimum value in a dictionary.
- Use
min()with thekeyparameter set todict.get()to find and return the key of the minimum value in the given dictionary.
def key_of_min(d):
return min(d, key = d.get)
key_of_min({'a':4, 'b':0, 'c':13}) # b