wie man ein Wörterbuch in Python zum anderen kopiert
import copy
dict2 = copy.deepcopy(dict1)
Strange Snake
import copy
dict2 = copy.deepcopy(dict1)