码迷,mamicode.com
首页 > 编程语言 > 详细

python的列表拷贝

时间:2017-11-20 21:49:37      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:结果   sign   nbsp   print   必须   nan   images   copy   alt   

1.拷贝一个列表必须使用切片操作符拷贝看下面的结果,与预想之差异

print (‘Simple Assignment‘)
shoplist = [‘apple‘,‘mango‘,‘carrot‘,‘banana‘]
mylist = shoplist

del shoplist[0]

print (‘ shoplist is ‘, shoplist)
print (‘mylist is ‘ ,mylist)

print (‘Copy by making a full slice‘)
mylist = shoplist[:]
del mylist [0]

print (‘shoplist is ‘,shoplist)
print (‘mylist is ‘,mylist)

技术分享图片

 

python的列表拷贝

标签:结果   sign   nbsp   print   必须   nan   images   copy   alt   

原文地址:http://www.cnblogs.com/dadaozhijian22/p/7868079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!