Understanding dict.copy() - shallow or deep?(理解 dict.copy() - 浅的还是深的?)
问题描述
在阅读 dict.copy()
的文档时,它说它制作了字典的浅表副本.我正在关注的书(Beazley's Python Reference)也是如此,它说:
While reading up the documentation for dict.copy()
, it says that it makes a shallow copy of the dictionary. Same goes for the book I am following (Beazley's Python Reference), which says:
m.copy() 方法使浅包含在 a 中的项目的副本映射对象并将它们放置在新的映射对象.
The m.copy() method makes a shallow copy of the items contained in a mapping object and places them in a new mapping object.
考虑一下:
>>> original = dict(a=1, b=2)
>>> new = original.copy()
>>> new.update({'c': 3})
>>> original
{'a': 1, 'b': 2}
>>> new
{'a': 1, 'c': 3, 'b': 2}
所以我假设这会更新 original
的值(并添加'c':3),因为我正在做一个浅拷贝.就像您为列表做的一样:
So I assumed this would update the value of original
(and add 'c': 3) also since I was doing a shallow copy. Like if you do it for a list:
>>> original = [1, 2, 3]
>>> new = original
>>> new.append(4)
>>> new, original
([1, 2, 3, 4], [1, 2, 3, 4])
这按预期工作.
既然都是浅拷贝,为什么 dict.copy()
不能像我预期的那样工作?还是我对浅拷贝和深拷贝的理解有缺陷?
Since both are shallow copies, why is that the dict.copy()
doesn't work as I expect it to? Or my understanding of shallow vs deep copying is flawed?
推荐答案
所谓的浅拷贝"是指字典的内容不是按值拷贝,而是创建一个新的引用.
By "shallow copying" it means the content of the dictionary is not copied by value, but just creating a new reference.
>>> a = {1: [1,2,3]}
>>> b = a.copy()
>>> a, b
({1: [1, 2, 3]}, {1: [1, 2, 3]})
>>> a[1].append(4)
>>> a, b
({1: [1, 2, 3, 4]}, {1: [1, 2, 3, 4]})
相比之下,深拷贝将按值复制所有内容.
In contrast, a deep copy will copy all contents by value.
>>> import copy
>>> c = copy.deepcopy(a)
>>> a, c
({1: [1, 2, 3, 4]}, {1: [1, 2, 3, 4]})
>>> a[1].append(5)
>>> a, c
({1: [1, 2, 3, 4, 5]}, {1: [1, 2, 3, 4]})
所以:
b = a
:引用赋值,使a
和b
指向同一个对象.
b = a
: Reference assignment, Makea
andb
points to the same object.
b = a.copy()
:浅拷贝,a
和b
会变成两个孤立的对象,但是它们的内容仍然共享相同的参考
b = a.copy()
: Shallow copying, a
and b
will become two isolated objects, but their contents still share the same reference
b = copy.deepcopy(a)
:深拷贝,a
和b
的结构和内容完全隔离.
b = copy.deepcopy(a)
: Deep copying, a
and b
's structure and content become completely isolated.
这篇关于理解 dict.copy() - 浅的还是深的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:理解 dict.copy() - 浅的还是深的?


基础教程推荐
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01