dest = {'a': 1}
src = {'a': 2, 'b': 2}
dest.update(src)
for k in dest:
    print(f'{k}: {dest[k]}')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: