python如何对数组删除元素

python

python中关于对列表元素的删除操作,有以下几种方式

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]

补充: 删除元素的变相方法

s1 = (1, 2, 3, 4, 5, 6)

s2 = (2, 3, 5)

s3 = []

for i in s1:

    if i not in s2:

        s3.append(i)

print('s1_1:', s1)

s1 = s3

print('s2:', s2)

print('s3:', s3)

print('s1_2:', s1)

以上是 python如何对数组删除元素 的全部内容, 来源链接: utcz.com/z/522342.html

回到顶部