编程语言
首页 > 编程语言> > python中删除列表中指定的元素

python中删除列表中指定的元素

作者:互联网

 

1、

>>> a = ["aa", "xx", "mm", "xx", "xx", "kk", "aa"]
>>> a
['aa', 'xx', 'mm', 'xx', 'xx', 'kk', 'aa']
>>> a.count("xx")                         ## 统计指定元素的次数
3
>>> for i in range(a.count("xx")):        ## 利用for循环删除指定元素
...     a.remove("xx")
...
>>> a                                     ## 查看结果
['aa', 'mm', 'kk', 'aa']

 

标签:aa,count,删除,python,列表,mm,xx,kk,##
来源: https://www.cnblogs.com/liujiaxin2018/p/16315862.html