581 B
581 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Merge dictionaries | snippet | python |
|
plant-candle | 2020-11-02T19:28:27+02:00 |
Merges two or more dictionaries.
- Create a new
dictand loop overdicts, usingdictionary.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 }