1 2 3 4 5 6 7
empty_dict = {} # create using a literal dict new_dict = {"foo": "bar"} # shallow copy a dict new_dict = {**another_dict}