标签:style sp on bs line python 学习 方法 nbsp
(1)浅拷贝:
当 a = b时,实际上对a只是复制了一个b的引用,如果a的值改变了,b的值也会改变,这就是浅拷贝。
同样,对list切片也会引起浅拷贝
(2)排序:
python内置了两种排序方法,sort和sorted。
a.sort() 或者 b = a.sort() 改变了a中的顺序
b = sorted(a) 不会改变a的顺序
标签:style sp on bs line python 学习 方法 nbsp
原文地址:http://www.cnblogs.com/ct1104/p/4053510.html