标签:extend 知识 span usr pytho 效果 例子 统计 一个
append:在列表末尾追加1个新的对象
count:统计某个元素在列表中出现的次数
extend:在列表末尾一次性追加另一个序列中的多个值
例子:
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 a=[1,2,3] 4 a.append(4) 5 print a 6 b=[‘to‘,‘be‘,‘or‘,‘not‘,‘to‘,‘be‘] 7 print b.count(‘to‘) 8 b1=[[1,2],1,1,[2,1,[1,2]]] 9 print b1.count(1) 10 print b1.count([1,2]) 11 print b1.count([2,1]) 12 c=[1,2,3] 13 c1=[4,5,6] 14 c.extend(c1) 15 print c
效果:
1 [1, 2, 3, 4]
2 2
3 2
4 1
5 0
6 [1, 2, 3, 4, 5, 6]
小知识:方法后面是(),如果调用列表对象,则是([ ]),如:count([1,2])
标签:extend 知识 span usr pytho 效果 例子 统计 一个
原文地址:https://www.cnblogs.com/scholarly/p/10206847.html