python之 列表常用方法
更多列表的使用方法和API,請參考Python文件:
append:用於在列表末尾追加新物件:
# append函式
lst = [1,2,3]
lst.append(4)
# 輸出:[1, 2, 3, 4]
print lst
複製程式碼
count:用於統計某個元素在列表中出現的次數:
# count函式
temp_str = ['to','be','not','to','be']
# 輸出:2
print temp_str.count('to')
extend:可以在列表末尾一次性追加另一個序列中的多個值,和連線操作不同,extend方法是修改了被擴充套件的序列(呼叫extend方法的序列),而原始的連線操作返回的是一個全新的列表
# extend函式
a = [1,2,3]
b = [4,5,6]
a.extend(b)
#輸出:[1, 2, 3, 4, 5, 6]
print a
# 輸出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
print a + [7,8,9]
# 輸出:[1, 2, 3, 4, 5, 6]
print a
index:用於從列表中找出某個值第一個匹配項的索引位置
# index函式
knights = ['we','are','the','knights','who','say','ni']
# 輸出:4
print knights.index('who')
# 丟擲異常:ValueError: 'me' is not in list
print knights.index('me')
insert:用於將物件插入到列表中
# insert函式
numbers = [1,2,3,5,6]
numbers.insert(3,'four')
# 輸出:[1, 2, 3, 'four', 5, 6]
print numbers
pop:移除列表中的一個元素(預設是最後一個),並且返回該元素的值。透過pop方法可以實現一種常見的資料結構——棧(LIFO,後進先出)。
# pop函式
x = [1,2,3]
x.pop()
# 輸出:[1, 2]
print x
y = x.pop(0)
# 輸出:[2]
print x
# 輸出:1
print y
remove:移除列表中某個值的第一個匹配項
# remove函式
x = ['to','be','not','to','be']
x.remove('to')
# 輸出:['be', 'not', 'to', 'be']
print x
# 移除列表沒有的元素會丟擲異常
x.remove('too')
reverse:將列表中的元素反向存放
# reverse函式
x = [1,2,3]
x.reverse()
# 輸出:[3, 2, 1]
print x
sort:對列表進行排序。注意:sort函式時沒有返回值的(None),它作用於源序列。可以透過sorted函式來獲取已排序的列表副本。
# sort函式
x = [3,1,2,7,6,9,5,4,8]
y = x[:]
z = x
y.sort()
# 輸出:[3, 1, 2, 7, 6, 9, 5, 4, 8]
print x
# 輸出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
print y
# 輸出:[3, 1, 2, 7, 6, 9, 5, 4, 8]
print z
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31383567/viewspace-2148200/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python中列表常用的方法Python
- Python操作列表的常用方法總結Python
- Python中列表去重常用的3種方法!Python
- Python語言合併列表元素常用的方法!Python
- Python中合併兩個列表常用的方法有哪些?Python
- Python常用資料結構(列表)Python資料結構
- Python中列表的方法Python
- Python列表操作方法Python
- Python List 列表list()方法Python
- python基礎之序列型別的方法——列表&元組Python型別
- 微課|玩轉Python輕鬆過二級(3.1節):列表常用方法Python
- python列表讀取的方法Python
- Python List 列表list()方法分享Python
- Python - list 列表常見方法Python
- Python基礎之list列表寫入檔案的四種方法Python
- Python 列表 list 陣列 array 常用操作集錦Python陣列
- Python 學習之元組列表Python
- python基礎之元組,列表Python
- python學習之字串常用方法和格式化字串Python字串
- python常用內建方法Python
- Python Selenium 常用方法Python
- python列表刪除專案的方法Python
- Python:字典列表字串方法測試Python字串
- 常用的sql列表SQL
- 常用埠列表(轉)
- Python 列表 list 陣列 array 常用操作集錦薦Python陣列
- list列表運算子,列表元素的遍歷,列表的方法,生成列表,巢狀的列表|python自學筆記(四)巢狀Python筆記
- Python常用模組之sysPython
- java容器之Set常用方法Java
- Python主要模組和常用方法Python
- python3常用方法集合Python
- Python字串常用方法總結Python字串
- Python列表刪除元素的方法有哪些?Python
- Python對列表去重的4種方法Python
- Python 列表排序方法reverse、sort、sorted詳解Python排序
- iptables常用規則列表
- windows10系統關閉工作列常用列表的方法Windows
- Python學習之常用模組Python