Finds the key of the minimum value in a dictionary.
- Use
min()
with thekey
parameter 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