python字符串列表删除指定元素
时间: 2023-10-03 12:04:45 浏览: 70
Python 去除字符串中指定字符串
5星 · 资源好评率100%
要删除字符串列表中的指定元素,可以使用列表推导式或循环遍历的方式进行操作。下面是两种方法的示例代码:
方法一:使用列表推导式
```python
lst = ['apple', 'banana', 'orange', 'apple', 'grape']
element_to_remove = 'apple'
lst = [x for x in lst if x != element_to_remove]
print(lst)
```
输出结果为:
```
['banana', 'orange', 'grape']
```
方法二:使用循环遍历
```python
lst = ['apple', 'banana', 'orange', 'apple', 'grape']
element_to_remove = 'apple'
new_lst = []
for item in lst:
if item != element_to_remove:
new_lst.append(item)
print(new_lst)
```
输出结果为:
```
['banana', 'orange', 'grape']
```
以上两种方法都可以实现从字符串列表中删除指定元素。你可以根据自己的需求选择其中一种方法来使用。
阅读全文