pythonlist刪除元素時(shí)要注意的坑點(diǎn)
來(lái)源:懂視網(wǎng)
責(zé)編:小OO
時(shí)間:2020-11-27 14:22:04
pythonlist刪除元素時(shí)要注意的坑點(diǎn)
我們直接先給出輸出與預(yù)期不同的代碼。In[28]: a = [1,2,3,4,5,6]In[29]: for i in a: ...: a.remove(i) ...: In[30]: aOut[30]: [2.4.6]。在上述for循環(huán)中,假設(shè)我們刪除了index=2的值,原本index=3及之后的值會(huì)向前補(bǔ)位,所以在循環(huán)中就跳過(guò)了原index=3的變量。同理,使用list.pop()函數(shù)刪除指定元素的時(shí)候,也會(huì)出現(xiàn)上述情況,如。In[33]: a = [1,2,3,4,5,6]In[34]: for index.value in enumerate(a): ...: a.pop(index) ...: In[35]: aOut[35]: [2.4.6]。
導(dǎo)讀我們直接先給出輸出與預(yù)期不同的代碼。In[28]: a = [1,2,3,4,5,6]In[29]: for i in a: ...: a.remove(i) ...: In[30]: aOut[30]: [2.4.6]。在上述for循環(huán)中,假設(shè)我們刪除了index=2的值,原本index=3及之后的值會(huì)向前補(bǔ)位,所以在循環(huán)中就跳過(guò)了原index=3的變量。同理,使用list.pop()函數(shù)刪除指定元素的時(shí)候,也會(huì)出現(xiàn)上述情況,如。In[33]: a = [1,2,3,4,5,6]In[34]: for index.value in enumerate(a): ...: a.pop(index) ...: In[35]: aOut[35]: [2.4.6]。
下面為大家分享一篇python list刪除元素時(shí)要注意的坑點(diǎn)分享,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起過(guò)來(lái)看看吧
我們直接先給出輸出與預(yù)期不同的代碼
In[28]: a = [1,2,3,4,5,6]
In[29]: for i in a:
...: a.remove(i)
...:
In[30]: a
Out[30]: [2, 4, 6]
在上述for循環(huán)中,假設(shè)我們刪除了index=2的值,原本index=3及之后的值會(huì)向前補(bǔ)位,所以在循環(huán)中就跳過(guò)了原index=3的變量
同理,使用list.pop()函數(shù)刪除指定元素的時(shí)候,也會(huì)出現(xiàn)上述情況,如:
In[33]: a = [1,2,3,4,5,6]
In[34]: for index, value in enumerate(a):
...: a.pop(index)
...:
In[35]: a
Out[35]: [2, 4, 6]
如果我們想循環(huán)刪除列表中的元素,較簡(jiǎn)單的可用方法有:用一個(gè)臨時(shí)列表保存待刪除的元素,在for循環(huán)臨時(shí)列表來(lái)刪除老列表中的元素;或者直接用剩余元素列表覆蓋原列表
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
pythonlist刪除元素時(shí)要注意的坑點(diǎn)
我們直接先給出輸出與預(yù)期不同的代碼。In[28]: a = [1,2,3,4,5,6]In[29]: for i in a: ...: a.remove(i) ...: In[30]: aOut[30]: [2.4.6]。在上述for循環(huán)中,假設(shè)我們刪除了index=2的值,原本index=3及之后的值會(huì)向前補(bǔ)位,所以在循環(huán)中就跳過(guò)了原index=3的變量。同理,使用list.pop()函數(shù)刪除指定元素的時(shí)候,也會(huì)出現(xiàn)上述情況,如。In[33]: a = [1,2,3,4,5,6]In[34]: for index.value in enumerate(a): ...: a.pop(index) ...: In[35]: aOut[35]: [2.4.6]。