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

21 lines
447 B
Markdown

---
title: Key of min value
tags: dictionary
cover: goat-wooden-cottage
firstSeen: 2021-01-07T23:15:48+02:00
lastUpdated: 2021-01-07T23:15:48+02:00
---
Finds the key of the minimum value in a dictionary.
- Use `min()` with the `key` parameter set to `dict.get()` to find and return the key of the minimum value in the given dictionary.
```py
def key_of_min(d):
return min(d, key = d.get)
```
```py
key_of_min({'a':4, 'b':0, 'c':13}) # b
```