Merge two dictionaries | thiscodeWorks

PHOTO EMBED

Tue Aug 03 2021 04:00:05 GMT+0000 (Coordinated Universal Time)

Saved by @mdcx #python

 
def merge_two_dicts(a, b):
 
 
   c = a.copy()   # make a copy of a
 
   c.update(b)    # modify keys and values of a with the ones from b
 
   return c
 
 
 
 
 
a = { 'x': 1, 'y': 2}
 
b = { 'y': 3, 'z': 4}
 
 
print(merge_two_dicts(a, b)) # {'y': 3, 'x': 1, 'z': 4}
 
content_copyCOPY

https://www.thiscodeworks.com/5e82d87494fa180014e9abb3