您好,登錄后才能下訂單哦!
這篇文章主要介紹了python中刪除列表中指定元素的方法有哪些,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
python中刪除列表中指定的元素,可以使用以下方法
1、remove: 刪除單個元素,刪除首個符合條件的元素,按值刪除
舉例說明:
>>> str=[1,2,3,4,5,2,6] >>> str.remove(2) >>> str [1, 3, 4, 5, 2, 6]
2.pop: 刪除單個或多個元素,按位刪除(根據(jù)索引刪除)
>>> 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:它是根據(jù)索引(元素所在位置)來刪除
舉例說明:
>>> 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還可以刪除指定范圍內(nèi)的值。
>>> str=[0,1,2,3,4,5,6] >>> del str[2:4] #刪除從第2個元素開始,到第4個為止的元素(但是不包括尾部元素) >>> str [0, 1, 4, 5, 6]
del 也可以刪除整個數(shù)據(jù)對象(列表、集合等)(更多學(xué)習(xí)內(nèi)容,請點擊python學(xué)習(xí)網(wǎng))
>>> str=[0,1,2,3,4,5,6] >>> del str >>> str #刪除后,找不到對象 Traceback (most recent call last): File "<pyshell#27>", line 1, in <module> str NameError: name 'str' is not defined
注意:del是刪除引用(變量)而不是刪除對象(數(shù)據(jù)),對象由自動垃圾回收機(jī)制(GC)刪除。
補(bǔ)充: 刪除元素的變相方法
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
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享python中刪除列表中指定元素的方法有哪些內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。