python - 列表
1.列表基本操作
- 創(chuàng)建列表
>>> num=[1,2,4]
>>> print(num)
[1, 2, 4]
- 向列表添加元素
- append( ) 方法添加單個元素。
- extend( ) 方法通過列表來擴(kuò)展列表。
>>> num.append(6)
>>> print(num)
[1, 2, 4, 6]
>>> num.extend([7,8])
>>> print(num)
[1, 2, 4, 6, 7, 8]
- 列表解析:列表解??將for循環(huán)和創(chuàng)建新元素的代碼合并成一行,并自動??加新元素。
listx = [value**2 for value in range(1,11)]
print(listx)
結(jié)果:
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
- 插入元素
- insert( a,b)方法,a表示位置,b表示插入的元素兢榨。
>>> num.insert(0,4)
>>> print(num)
[4, 1, 2, 4, 6, 7, 8]
- 獲取元素,列表索引
>>> print(num)
[4, 1, 2, 4, 6, 7, 4, 4, 8]
>>> num[1]
1
listx = [6,7,1,4,7]
print(listx[-1]) //從右往左索引顺饮,依次為-1吵聪、-2...
結(jié)果:
7
- 刪除元素
- remove( ):無需指定位置,保證元素在列表中存在即可兼雄,不然會報錯吟逝。
- del( ):可以指定刪除某個位置上的元素,也可直接寫表名刪除整張表赦肋。
- pop( ):默認(rèn)彈出最有一個元素块攒,可以彈出指定位置上的元素励稳。
>>> list = [1,2,3,4]
>>> list.remove(2) //remove不能刪除指定位置的元素
>>> list
[1, 3, 4]
>>> list
[1, 3, 4]
>>> del list[0] //del是一個語句,無需寫成del()
>>> list
[3, 4]
>>> listx=[1,2,3,4] //list是一個關(guān)鍵字囱井,不建議作為變量使用
>>> del listx
>>> listx
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'listx' is not defined
>>> listx=[1,2,3,4]
>>> listx.pop() //把最后一個元素4彈出
4
>>> listx
[1, 2, 3]
>>> listx.pop(0) //彈出指定位置元素
1
2.列表分片
列表分片:使用 :隔開兩個索引值驹尼,左邊是開始位置,右邊是結(jié)束位置庞呕,索引值是從0開始的新翎。
例如:listx = [0:2]
所謂列表分片,其實是建立了一個原列表的拷貝
分片簡寫
>>> listx = [1,2,3,4,5]
>>> listx[:] //僅:表示整個列表
[1, 2, 3, 4, 5]
>>> listx[3:] //結(jié)束位不寫默認(rèn)到最后一個元素
[4, 5]
>>> listx[:3] //開始位置默認(rèn)為0
[1, 2, 3]
通過分片來復(fù)制列表
listx = [6,7,1,4,7]
listy = listx[:]
listy.append(8)
print(listx)
print(listy)
結(jié)果:
[6, 7, 1, 4, 7]
[6, 7, 1, 4, 7, 8]
2.1列表分片進(jìn)階
分片還有第三個參數(shù)千扶,表示步長
例如:listx = [0:2:1]
>>> listx=[1,2,3,4,5,6,7,8,9]
>>> listx[::2] //每兩個元素才取一個元素出來
[1, 3, 5, 7, 9]
>>> listx[::-1] //表示復(fù)制一個反轉(zhuǎn)的分片
[9, 8, 7, 6, 5, 4, 3, 2, 1]
3.分片的操作符
- 比較操作符
>>> list1=[1,2]
>>> list2=[2,0]
>>> list1>list2 //分片比大小料祠,從第一個元素開始比較,某個元素勝澎羞,列表也勝出
False
- 算數(shù)操作符
- +表示連接操作符(拼接)
- *****表示重復(fù)操作符
list1 = [1,2,3]
list2 = [4,5,6]
list3 = list1 + list2
list4 = list1 * 2
print(list3)
print(list4)
結(jié)果:
[1, 2, 3, 4, 5, 6]
[1, 2, 3, 1, 2, 3]
- 列表包含另一個列表
list1 = [1,2,[3,4],5]
print(1 in list1)
print(2 not in list1)
print(3 in list1) //in和not in只能判斷到第一層列表
print(list1[2][1]) //使用二維數(shù)組的方式可訪問列表中的列表
結(jié)果
True
False
False
4
4.列表的相關(guān)方法
查看列表的所有方法:dir(list)
- count( ) 計算元素在列表中出現(xiàn)的次數(shù)
listx = [1,2,3,4,5,6,7,8,8]
print(listx.count(8))
結(jié)果:
2
- len( ) 計算列表的長度,從1開始計算元素個數(shù)敛苇,不存在差1
listx = [6,7,1,4,7]
print(len(listx)) #len() 從1開始計算元素個數(shù)妆绞,不存在差1
結(jié)果:
5
- index( ) 計算元素在列表中出現(xiàn)的位置(若有重復(fù)元素,則以第一為準(zhǔn))
listx = [1,2,3,4,5,6,7,8,8]
print(listx.index(8))
# index(key,start,stop) 用于限定查找范圍
start = listx.index(8) + 1 //查找第二個元素的位置
stop = len(listx)
print(listx.index(8,start,stop))
結(jié)果:
7
8
- reverse( ) 將列表原地翻轉(zhuǎn)
listx = [1,2,3,4]
listx.reverse()
print(listx)
結(jié)果:
[4, 3, 2, 1]
- sort( ) 將列表進(jìn)行排序枫攀,默認(rèn)是升序
listx = [6,7,1,4,7]
listx.sort() //升序
print(listx)
結(jié)果:
[1, 4, 6, 7, 7]
listx = [6,7,1,4,7]
listx.sort(reverse=True) //降序
print(listx)
結(jié)果:
[7, 7, 6, 4, 1]
- clear( )清空列表
listx = [1,2,3]
print(listx)
listx.clear()
print(listx)
結(jié)果:
[1, 2, 3]
[]
- copy( )拷貝列表
- =直接賦值括饶,是引用賦值,更改一個来涨,另一個同樣會變
- copy() 則顧名思義图焰,復(fù)制一個副本,原值和新復(fù)制的變量互不影響
listx = [1,2,3]
list1 = listx.copy()
# print(listx,'\n',list1)
print(listx)
print(list1)
結(jié)果:
[1, 2, 3]
[1, 2, 3]
5.遍歷列表
使用for循環(huán)遍歷列表
listx = [i for i in range(0,20,3)]
for i in listx:
print(str(i)+' ',end='')
結(jié)果:
0 3 6 9 12 15 18