Python 中一切皆是引用
stu1 = 'lilei'
stu2 = stu1 #'lilei'引用赋值给了stu2
[id(x) for x in stu1, stu2] #[39030136L, 39030136L] stu1和syu2指向了同一对象
如上所示并没有进行对象的拷贝,只是把引用拷贝
student = ['name', ['score:', 100]]
wang = student[:]
li = list(student)
[id(x) for x in student, wang, li] #[39039304L, 39004552L, 39042760L] 对对象进行了拷贝
序列对象的拷贝默认为 浅拷贝:新创建了一个类型跟原对象一样,其内容是原来对象元素的引用
wang[1][1] = 50
li # ['name', ['score:', 50]] 其中的列表元素也发生了改变
(1)完全切片操作[:],
(2)利用工厂函数,比如 list(),dict()等,
(3)使用 copy 模块的 copy 函数.
以上三种方式进行的拷贝都是浅拷贝
深拷贝:创建一个新的容器对象,包含原有对象元素(引用)全新拷贝的引用--需要 copy.deepcopy()函数