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

python list

时间:2017-07-16 16:47:02      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:app   extend   color   font   span   int   个数   pen   style   

list1=[1,2,3,4,5]
list2=[6,7,8]
list1.append(list2) #添加集合[6,7,8] 结果:[1,2, 3, 4, 5, [6, 7, 8]]
list1.extend(list2) #添加集合内各个元素 结果:[1,2, 3, 4, 5, [6, 7, 8], 6, 7, 8]
list1.count(3) #3的个数 结果:1
list1.append(1) #添加1 结果:[1,2, 3, 4, 5, [6, 7, 8], 6, 7, 8, 1]
list1.insert(1,5) #在下表1出添加5 结果:[1, 5, 2, 3, 4, 5, [6, 7, 8], 6, 7, 8, 1]
print (list1)
print(list1.pop())     #删除最后一个元素          1
print(list1.pop(0)) #删除下表0的元素 1

python list

标签:app   extend   color   font   span   int   个数   pen   style   

原文地址:http://www.cnblogs.com/wskxy/p/7190731.html

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