描述
remove() 函數(shù)用于移除列表中某個(gè)值的第一個(gè)匹配項(xiàng)。
語(yǔ)法
remove()方法語(yǔ)法:
list.remove(obj)
參數(shù)
obj -- 列表中要移除的對(duì)象。
返回值
該方法沒(méi)有返回值但是會(huì)移除列表中的某個(gè)值的第一個(gè)匹配項(xiàng)。
實(shí)例
以下實(shí)例展示了 remove()函數(shù)的使用方法:
#!/usr/bin/python
aList = [123, 'xyz', 'zara', 'abc', 'xyz'];
aList.remove('xyz');
print "List : ", aList;
aList.remove('abc');
print "List : ", aList;
以上實(shí)例輸出結(jié)果如下:
List : [123, 'zara', 'abc', 'xyz']
List : [123, 'zara', 'xyz']
相關(guān)實(shí)例擴(kuò)展:
# remove
a = [1, 2, 3, 1]
print(a.remove(1))
print(a)
a.remove(4)
# 輸出結(jié)果
None
[2, 3, 1]
Traceback (most recent call last):
a.remove(4)
ValueError: list.remove(x): x not in list
到此這篇關(guān)于Python List remove()實(shí)例用法詳解的文章就介紹到這了,更多相關(guān)Python List remove()方法內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- python中re.findall函數(shù)實(shí)例用法
- python點(diǎn)云地面點(diǎn)濾波(Progressive Morphological Filter)算法介紹(PCL庫(kù))
- python3操作redis實(shí)現(xiàn)List列表實(shí)例
- Python模塊對(duì)Redis數(shù)據(jù)庫(kù)的連接與使用講解
- Python之re模塊案例詳解