Python中列表的方法
Python中的列表內建了許多方法。在下文中,使用“L”代表一個列表,使用“x”代表方法的引數,以便說明列表的使用方法。
1 append()方法
列表的append()方法用於將一個項新增到列表的末尾,L.append(x)等價於L[len(L):] = [x]。
例如,使用append()方法分別將'cow'和'elephant'新增到animals列表的末尾:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.append( 'cow' ) # 等價於animals[4:]=['cow']
- >>> animals
- [ 'cat' , 'dog' , 'fish' , 'dog' , 'cow' ]
- >>> animals.append( 'elephant' ) # 等價於animals[5:]=['elephant']
- >>> animals
- [ 'cat' , 'dog' , 'fish' , 'dog' , 'cow' , 'elephant' ]
2 ()方法
列表的()方法用於將一個項插入指定索引的前一個位置。L.(0, x)是將x插入列表的最前面,L.(len(L)), x)等價於L.append(x)。
例如,使用()方法分別將'cow'和'elephant'插入animals列表:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.( 0 , 'cow' )
- >>> animals
- [ 'cow' , 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.( 3 , 'elephant' )
- >>> animals
- [ 'cow' , 'cat' , 'dog' , 'elephant' , 'fish' , 'dog' ]
3 extend()方法
列表的extend()方法用於將可迭代物件的所有項追加到列表中。L.extend(iterable)等價於L[len(L):] = iterable。extend()和append()方法的區別是,extend()方法會將可迭代物件“展開”。
例如,分別使用append()方法和extend()方法在animals列表後面追加一個包含'cow'和'elephant'的列表:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.append([ 'cow' , 'elephant' ]) # 此處append()引數是一個列表
- >>> animals
- [ 'cat' , 'dog' , 'fish' , 'dog' , [ 'cow' , 'elephant' ]]
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.extend([ 'cow' , 'elephant' ]) # 此處extend()引數也是一個列表
- >>> animals
- [ 'cat' , 'dog' , 'fish' , 'dog' , 'cow' , 'elephant' ]
4 remove()方法
列表的remove()方法用於移除列表中指定值的項。L.remove(x)移除列表中第一個值為x的項。如果沒有值為x的項,那麼會丟擲ValueError異常。
例如,使用remove()方法移除animals列表中值為'dog'的項:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.remove( 'dog' )
- >>> animals
- [ 'cat' , 'fish' , 'dog' ]
- >>> animals.remove( 'dog' )
- >>> animals
- [ 'cat' , 'fish' ]
- >>> animals.remove( 'dog' )
- Traceback (most recent call last):
- File "" , line 1 , in
- ValueError: list.remove(x): x not in list
5 pop()方法
列表的pop()方法用於移除列表中指定位置的項,並返回它。如果沒有指定位置,那麼L.pop()移除並返回列表的最後一項。
例如,使用pop()方法移除animals列表中指定位置的項:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> animals.pop()
- 'dog'
- >>> animals
- [ 'cat' , 'dog' , 'fish' ]
- >>> animals.pop( 2 )
- 'fish'
- >>> animals
- [ 'cat' , 'dog' ]
在呼叫前面的列表方法後,並沒有列印任何值,而pop()方法列印了“彈出”的值。包括append()、()、pop()在內的方法都是“原地操作”。原地操作(又稱為就地操作)的方法只是修改了列表本身,並不返回修改後的列表。
在型別轉換時使用的int()函式,str()函式都有返回值:
- >>> number = 123
- >>> mystring = str(number) # 將返回值賦給變數mystring
- >>> mystring
- '123'
但是在使用“原地操作”時,大部分則不會有返回值,包括pop()方法也只是返回了被“彈出”的值,並沒有返回修改後的列表:
- >>> animals = [ 'cat' , 'dog' , 'fish' , 'dog' ]
- >>> new_animals = animals.append( 'cow' )
- >>> print (new_animals)
- None
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31543790/viewspace-2707386/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python列表中set函式的使用方法!Python函式
- Python中列表去重常用的3種方法!Python
- Python 中刪除列表元素的三種方法Python
- python列表讀取的方法Python
- python中的列表操作Python
- Python中合併兩個列表常用的方法有哪些?Python
- Python3中列表方法append()和extend()的區別PythonAPP
- 這12種方法輕鬆合併Python中的列表Python
- Python List 列表list()方法Python
- Python列表操作方法Python
- Python中的列表詳解Python
- Python列表中新增元素的常用方法!Python
- python列表刪除專案的方法Python
- Python List 列表list()方法分享Python
- Python - list 列表常見方法Python
- list列表運算子,列表元素的遍歷,列表的方法,生成列表,巢狀的列表|python自學筆記(四)巢狀Python筆記
- Python列表刪除元素的方法有哪些?Python
- python中列表相加Python
- Python中列表和字串的反轉Python字串
- Python中列表的深淺拷貝Python
- python 列表轉為字典的兩個小方法Python
- Python中基於匹配項的子列表列表串聯Python
- python的列表[]Python
- Python:字典列表字串方法測試Python字串
- Python刪除列表中的非字母字元Python字元
- Python語言合併列表元素常用的方法!Python
- Python3 列表list合併的4種方法Python
- python中列表如何去除重複Python
- 玩轉python字典與列表(中)Python
- 知識點:Python中的列表合併操作Python
- python中列表、字典和字串的互相轉換Python字串
- python基礎之序列型別的方法——列表&元組Python型別
- python類中的方法Python
- Python之列表的append()方法最容易踩的坑及解決PythonAPP
- 109-Python中列表索引和切片Python索引
- Python中如何將列表資料清空?Python
- python列表中是否存在某個元素Python
- python列表Python