Python List remove()方法
Python List remove()方法
remove() 函數(shù)用于移除列表中某個(gè)值的第一個(gè)匹配項(xiàng)。
語法
remove()方法語法:
list.remove(obj)
參數(shù)
- obj -- 列表中要移除的對象。
返回值
該方法沒有返回值但是會移除列表中的某個(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)文章
- Python for 循環(huán)語句
- Python 日期和時(shí)間
- Python 模塊
- Python File 方法
- Python JSON
- Python 節(jié)點(diǎn)
- Python3 注釋
- Python3 命名空間
- Python File isatty() 方法
- Python os.closerange() 方法
- Python os.isatty() 方法
- Python os.makedev() 方法
- Python isdecimal()方法
- Python isupper()方法
- Python rfind()方法
- Python splitlines()方法
- Python List insert()方法
- Python 字典 Dictionary values()方法
- Python Tuple 元組 cmp()方法
- Python time mktime()方法