list列表可以儲存多個、可重複、有序的資料
clear:清空列表
copy:複製列表
count:統計列表長度
extend:追加一組
index:獲取
insert:插入乙個資料
pop:刪除末尾乙個資料
remove:移除乙個資料
reverse:反轉列表
sort:對列表排序
extend(element): 在末尾追加一組元素
insert(index,element):在指定位置插入乙個元素
根據下標增加元素,例如:a = list() a[0]=1
remove(element): 刪除指定元素
pop():刪除列表末尾元素
del a[i] :刪除第i個元素
clear(): 清空整個列表中的元素
del 列表名 : 刪除列表
根據下標修改:a[i] = 5
index(下標號): 根據指定下標查詢元素
列表名[元素下標]: 根據索引查詢
len(列表名): 求列表的長度
max(列表名): 求列表中的最大值
min(列表名): 求列表中的最小值
sort(列表名): 對列表進行排序
reverser(列表名):將列表反轉
Python 中List列表的基本操作方法
author richard kong usr bin env python encoding utf 8 name konghuasehng richard alex fisherman jason wilson jack print name 0 迴圈列印list中的物件 要深入理解切片原理 注...
Python 列表 list 操作
建立列表 sample list a 1,a b python 列表操作 sample list a b 0,1,3 得到列表中的某乙個值 value start sample list 0 end value sample list 1 刪除列表的第乙個值 del sample list 0 在列...
python 列表list 操作
關於列表list的操作 a list 或者 a b c 建立乙個新的列表 a.extend hello world 或者a.extend c 其中c是乙個列表 extend作用是為陣列拓展多個元素或者乙個列表 a.count hello 意思即為計算列表a裡hello出現的次數 a.index wo...