python中的copy与deepcopy

学习版本3.5.2

copy和deepcopy都是copy模块中的函数,查看copy模块的帮助文档

A shallow copy constructs a new compound object and then (to the extent possible) inserts *the same objects* into it that the original contains.

A deep copy constructs a new compound object and then, recursively, inserts *copies* into it of the objects found in the original.


copy是构建一个复合对象然后将目标的所有元素插入到里面。deepcopy是构建一个复合对象然后将目标的所有元素的拷贝插入到里面

a = [1,2,[3,4]]
b = copy.copy(a)
c = copy.deepcopy(a)
a[2][1] = 5
a #[1, 2, [3, 5]]
b #[1, 2, [3, 5]]
c #[1, 2, [3, 4]]
id(a[2]) #4318857864
id(b[2]) #4318857864
id(c[2]) #4314937672

通过deepcopy得到的c,其中的第三个元素与a的第三个元素是在不同地址的list了,copy得到的b的第三个元素与a的第三个元素就是同一个list。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值