【Linux面试真题】- 什么方法用于移除列表中某个值的第一个匹配项?
【Linux面试真题】- 什么方法用于移除列表中某个值的第一个匹配项?
remove 方法用于移除列表中某个值的第一个匹配项:
>>> x = [‘to’, ‘be’, ‘or’, ‘not’, ‘to’, ‘be’]
>>> x.remove(‘be’)
>>> x
[‘to’, ‘or’, ‘not’, ‘to’, ‘be’]
>>> x.remove(‘bee’)
Traceback (most recent call last):
File “<stdin>”, line 1, in <module>
ValueError: list.remove(x): x not in list
只有第一次出现的值被移除,而不存在与列表中的值是不会移除的。
remove 是一个没有返回值的原位置改变方法。它修改了列表却没有返回值。