1.列表
1.len/index/count/列表[索引]取值
[圖片上傳失敗...(image-18cb8e-1529322936522)]
len(list)取列表的長(zhǎng)度
list.index("字符串")取下標(biāo)/索引
list.count("字符串")查看字符串在列表中出現(xiàn)了幾次
list[索引]通過索引取值
2.sort/sort(reverse=True)/reverse.()
[圖片上傳失敗...(image-c2e1b-1529322936522)]
list.sort() 排序
list.sort(reverse=True) 降序
list.reverse() 倒序
del list[索引] 刪除指定索引數(shù)據(jù)
list.remove(數(shù)據(jù)/值) 刪除指定數(shù)據(jù)
list.pop() 默認(rèn)刪除末尾數(shù)據(jù)
list.pop(索引) 刪除指定索引數(shù)據(jù)
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(索引,數(shù)據(jù)) 在指定索引處插入數(shù)據(jù)
list.append(數(shù)據(jù)) 在列表末尾插入數(shù)據(jù)
list.extend(列表) 把列表1里面的內(nèi)容追加到列表中
2.元組
創(chuàng)建空元組是
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(元組) 取元組的長(zhǎng)度
tuple.count(數(shù)據(jù)) 數(shù)據(jù)在元組中出現(xiàn)的次數(shù)
tuple[索引] 通過索引取數(shù)據(jù)
tuple.index(數(shù)據(jù)) 通過數(shù)據(jù)取索引