Files
30-seconds-of-code/snippets/merge_dictionaries.md
Isabelle Viktoria Maciohsek 1bf7eb28c4 Add merge_dictionaries
2020-04-16 19:28:35 +03:00

501 B

title, tags
title tags
merge_dictionaries dictionary,intermediate

Merges two or more dictionaries.

Create a new dict() and loop over dicts, using dictionary.update() to add the key-value pairs from each one to the result.

def merge_dictionaries(*dicts):
  res = dict()
  for d in dicts:
    res.update(d)
  return res
ages_one = {
  "Peter": 10,
  "Isabel": 11,
}
ages_two = {
  "Anna": 9
}
merge_dictionaries(ages_one, ages_two) # { "Peter": 10, "Isabel": 11, "Anna": 9 }