Как скопировать один словарь другому в Python
import copy
dict2 = copy.deepcopy(dict1)
Strange Snake
import copy
dict2 = copy.deepcopy(dict1)