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

python 列表合并

时间:2017-07-10 16:33:53      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:合并   其他   blog   lis   头部   pytho   技术   python 列表   参数   

  列表合并主要有以下方法:

  1、用list的extend方法,L1.extend(L2),该方法将参数L2的全部元素添加到L1的尾部

    技术分享

    结果:[1, 2, 3, 4, 5, 1, 20, 30]

  2、用切片(slice)操作,L1[len(L1):len(L1)] = L2和上面的方法等价

    技术分享

    结果:[1, 2, 3, 4, 5, 1, 20, 30]

    切片方法用起来更灵活,可以插入到头部,或其他任意部位,例如:

    加到开头:

    技术分享

    结果:[10, 20, 30, 1, 2, 3, 4, 5]

    加到中间:

    技术分享

    结果:[1, 10, 20, 30, 2, 3, 4, 5]

 

 

 

 

 

 

python 列表合并

标签:合并   其他   blog   lis   头部   pytho   技术   python 列表   参数   

原文地址:http://www.cnblogs.com/shaosks/p/7145957.html

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