最佳答案
我想在python中创建dict
的深度副本。不幸的是,.deepcopy()
方法不存在于dict
。我怎么做呢?
>>> 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
最后一行应该是3
。
我希望在my_dict
中的修改不会影响快照my_copy
。
我怎么做呢?解决方案应该与Python 3.x兼容。