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

552 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Invert dictionary dictionary rustic-cup 2020-04-07T21:13:32+03:00 2020-11-02T19:28:05+02:00

Inverts a dictionary with unique hashable values.

  • Use dictionary.items() in combination with a list comprehension to create a new dictionary with the values and keys inverted.
def invert_dictionary(obj):
  return { value: key for key, value in obj.items() }
ages = {
  'Peter': 10,
  'Isabel': 11,
  'Anna': 9,
}
invert_dictionary(ages) # { 10: 'Peter', 11: 'Isabel', 9: 'Anna' }