Comment copier un dictionnaire dans un autre à Python

import copy

dict2 = copy.deepcopy(dict1)
Strange Snake