删除list中元素的三种方法

1、remove()
list.remove('xxx') #xxx是list中第一个匹配的值

2、pop(index)
list.pop(index) #index从0开始,不写index则删除最后一个元素

 

 


3、del
del list[0]

 


 

 
posted @ 2022-02-07 21:23  liulj0713  阅读(1176)  评论(0编辑  收藏  举报