1.列表
1.len/index/count/列表[索引]取值
[图片上传失败...(image-18cb8e-1529322936522)]
len(list)取列表的长度
list.index("字符串")取下标/索引
list.count("字符串")查看字符串在列表中出现了几次
list[索引]通过索引取值
2.sort/sort(reverse=True)/reverse.()
[图片上传失败...(image-c2e1b-1529322936522)]
list.sort() 排序
list.sort(reverse=True) 降序
list.reverse() 倒序
del list[索引] 删除指定索引数据
list.remove(数据/值) 删除指定数据
list.pop() 默认删除末尾数据
list.pop(索引) 删除指定索引数据
3.insert/append/extend
In [36]: list
Out[36]: ['1', '3', '6', '7', '8']
In [37]: list.insert(2,"as")
In [38]: list
Out[38]: ['1', '3', 'as', '6', '7', '8']
In [39]: list.append('wo ai ni xiao zhu')
In [40]: list
Out[40]: ['1', '3', 'as', '6', '7', '8', 'wo ai ni xiao zhu']
In [41]: list1=['q','w','e']
In [42]: list.extend(list1)
In [43]: list
Out[43]: ['1', '3', 'as', '6', '7', '8', 'wo ai ni xiao zhu', 'q', 'w', 'e']
list.insert(索引,数据) 在指定索引处插入数据
list.append(数据) 在列表末尾插入数据
list.extend(列表) 把列表1里面的内容追加到列表中
2.元组
创建空元组是
tuple=()
In [45]: tuple=('as','asd','qw','12')
In [46]: type(tuple)
Out[46]: tuple
In [47]: len(tuple)
Out[47]: 4
In [48]: tuple.count("as")
Out[48]: 1
In [49]: tuple[1]
Out[49]: 'asd'
In [50]: tuple.index('qw')
Out[50]: 2
len(元组) 取元组的长度
tuple.count(数据) 数据在元组中出现的次数
tuple[索引] 通过索引取数据
tuple.index(数据) 通过数据取索引