python 中 删除列表元素

By 刘志军 , 2020-06-13, 分类: qa

python

python 删除列表元素使用remove方法

>>> s = ["a", "b", "a", "c"]
>>> s.remove("a")
>>> s
['b', 'a', 'c']
>>>

remove 方法只会删除列表中第一次出现的元素,如果要删除所有的a元素,则可以使用:

>>> s = ["a", "b", "a", "c"]
>>> list(filter(('a').__ne__, s))
['b', 'c']
>>>

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2024-03-04
Python中的 if __name__ == '__main__' 是什么?
2024-03-04
用 Python 破解隔壁老王家的 Wi-Fi 密码,刺激!
2023-06-12
Python3.12新特性
2023-04-17
Python虚拟环境使用
2023-04-15
如何删除macOS系统默认的Python2.7并替换成最新版python3.11
2022-12-09
python 中return和yield有什么区别
2022-08-17
如何利用多态干掉 if else 语句
2022-07-22
10个python初学者常犯的错误
2022-06-10
flask-siwadoc 支持openapi 分组功能
2022-06-10
在Python应用中Telegram 机器人搭建消息提醒