标签: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
标签:app extend color font span int 个数 pen style
原文地址:http://www.cnblogs.com/wskxy/p/7190731.html