请问python里面怎样删除list中元素的字符

更新时间:01-24 教程 由 何必等 分享

请问python里面怎样删除list中元素的字符?

1.remove: 删除单个元素,删除首个符合条件的元素,按值删除

举例说明:

>>> str=[1,2,3,4,5,2,6]

>>> str.remove(2)

>>> str

[1, 3, 4, 5, 2, 6]

2.pop: 删除单个或多个元素,按位删除(根据索引删除)

>>> str=[0,1,2,3,4,5,6]

>>> str.pop(1) #pop删除时会返回被删除的元素

>>> str

[0, 2, 3, 4, 5, 6]

>>> str2=['abc','bcd','dce']

>>> str2.pop(2)

'dce'

>>> str2

['abc', 'bcd']

3.del:它是根据索引(元素所在位置)来删除

举例说明:

>>> str=[1,2,3,4,5,2,6]

>>> del str[1]

>>> str

[1, 3, 4, 5, 2, 6]

>>> str2=['abc','bcd','dce']

>>> del str2[1]

>>> str2

['abc', 'dce']

除此之外,del还可以删除指定范围内的值。

>>> str=[0,1,2,3,4,5,6]

>>> del str[2:4] #删除从第2个元素开始,到第4个为止的元素(但是不包括尾部元素)

>>> str

[0, 1, 4, 5, 6]

声明:关于《请问python里面怎样删除list中元素的字符》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2172635.html