1、往列表中最後乙個位置新增乙個元素
list1.extend([5,3,2])
list1 = [1,2,3,4,1,5,3,2]
3、在列表中特定位置插入乙個元素
list1.insert(2,8)
list1 = [1,2,8,3,4,1,5,3,2]
4、交換列表中元素的位置
使用臨時變數temp
temp = list1[1]
list1 = [1,2,8,3,4,1,5,3,2]
list1[1] = list1[2]
list1 = [1,8,8,3,4,1,5,3,2]
list1[2] = temp
list1 = [1,8,2,3,4,1,5,3,2]
5、刪除乙個元素
list1.remove(8)
list1 = [1,8,2,3,4,1,5,3]
del list1[2]
list1 = [1,8,3,4,1,5,3]
6、取出列表中最後位置的乙個元素
list1.pop()=3
list1.pop(3)=4
list1 = [1,8,3,1,5]
7、列表分片slice
list2 = [1,3,2,4,6,7,4,21]
list2[0:3] = [1,3,2]
list2[:3] = [1,3,2]
list2[4:7] = [6,7,4]
list2[4:] = [6,7,4]
list2[:] = [1,3,2,4,6,7,4,21]
8、操作符作用於列表
>比較操作符
list1 > list2 結果為false
+拼接操作符
list1+list2 = [1,8,3,1,3,2,4,6,7,4,21]
*重複操作符
list1 ※3 = [1,8,3,1,8,3,1,8,3]
in / not in
1 in list1 結果為true
2 not in list1 結果為true
9、dir(list)檢視list相關內建函式
.count()計數
.index()索引
list1.index(1,2,5) = 3
第二個引數為索引範圍的起始值,第三個引數為結束值。
.reverst()倒序
.sort()預設從小到大排列,等同於.sort(reverst=false)
.sort(reverst=true)從大到小排列
cmp(list1,list2):比較兩個列表的元素
len(list1):列表元素的個數
max(list1):返回列表元素最大值
min(list1):返回列表元素最小值
list(seq):將元組轉換為列表
Python基礎 list 列表
建立列表 lst 1,2.34,bb true 檢視列表中的資料 print lst 檢視列表的資料型別 print type lst 通過索引獲取列表中的元素 索引從0開始 num lst 1 print num ret lst 4 print ret length len lst print l...
python基礎list列表的方法
a list a dir a 檢視list的所有方法 a 5 a 5 6 insert 指定位置插入元素 a.insert 0,55 a 55 5 6 extend 將列表中的所有元素追加到列表的末尾 b s sd a.extend b a 55 5 6 s sd remove 移除指定元素 a.r...
python基礎 之list列表
python提供了乙個被稱為列表的資料型別,他可以儲存乙個有序的元素集合。記住 乙個列表可以儲存任意大小的資料集合。列表是可變物件,有別於字串str類,str類是不可變物件。list1 list 建立乙個空列表 list2 list 2,3,4 建立列表,包含元素2,3,4 list3 list r...