Ich möchte eine tiefe Kopie eines dict
in Python. Leider ist die .deepcopy()
Methode gibt es nicht für die dict
. Wie kann ich das tun?
>>> my_dict = {'a': [1, 2, 3], 'b': [4, 5, 6]}
>>> my_copy = my_dict.deepcopy()
Traceback (most recent calll last):
File "<stdin>", line 1, in <module>
AttributeError: 'dict' object has no attribute 'deepcopy'
>>> my_copy = my_dict.copy()
>>> my_dict['a'][2] = 7
>>> my_copy['a'][2]
7
Die letzte Zeile sollte lauten 3
.
Ich möchte, dass die Änderungen in my_dict
den Snapshot nicht beeinträchtigen my_copy
.
Wie kann ich das tun? Die Lösung sollte mit Python 3.x kompatibel sein.