Unrelated to python 3.7, but they recently added this feature that you can add two dictionaries together in 3.5 by doing: new_dict = {**dict1, **dict2} It is so handy and nice
What happens to duplicate keys?
https://www.python.org/dev/peps/pep-0448/
EDIT: yeah, nvm, it's what everyone else said.