Files
30-seconds-of-code/snippets/key_of_max.md
Isabelle Viktoria Maciohsek cbc78ee450 Bake dates into snippets
2021-06-13 19:38:10 +03:00

20 lines
423 B
Markdown

---
title: key_of_max
tags: dictionary,beginner
firstSeen: 2021-01-07T23:15:48+02:00
lastUpdated: 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.
```py
def key_of_max(d):
return max(d, key = d.get)
```
```py
key_of_max({'a':4, 'b':0, 'c':13}) # c
```