[DONE] dictionary unpacking (PEP 448)

Oh, BTW, in case anyone tried this and failed, you can still merge dictionaries on a single line.

merged_dict = dict(dict_a, **dict_b)
2 Likes