Python List remove()方法
Python List remove()方法
remove() 函数用于移除列表中某个值的第一个匹配项。
语法
remove()方法语法:
list.remove(obj)
参数
- obj -- 列表中要移除的对象。
返回值
该方法没有返回值但是会移除列表中的某个值的第一个匹配项。
实例
以下实例展示了 remove()函数的使用方法:
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc', 'xyz']; aList.remove('xyz'); print "List : ", aList; aList.remove('abc'); print "List : ", aList;
以上实例输出结果如下:
List : [123, 'zara', 'abc', 'xyz'] List : [123, 'zara', 'xyz']
相关文章
- Python for 循环语句
- Python 日期和时间
- Python 模块
- Python File 方法
- Python JSON
- Python 节点
- 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()方法