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

【Python】列表的复制

时间:2021-04-13 12:54:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   style   code   python   app   列表   color   div   pen   

>>> list_a=[1,2,3,4]
>>> list_a
[1, 2, 3, 4]
>>> list_b=list_a
>>> list_b
[1, 2, 3, 4]
>>> list_a.append(1)
>>> list_a
[1, 2, 3, 4, 1]
>>> list_b
[1, 2, 3, 4, 1]
>>> list_c=list_a[:]
>>> list_c
[1, 2, 3, 4, 1]
>>> list_a.append(9)
>>> list_a
[1, 2, 3, 4, 1, 9]
>>> list_b
[1, 2, 3, 4, 1, 9]
>>> list_c
[1, 2, 3, 4, 1]

上面表明了如何对列表做复制操作;

【Python】列表的复制

标签:pre   style   code   python   app   列表   color   div   pen   

原文地址:https://www.cnblogs.com/LeeCookies/p/14652312.html

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