python 數組的del ,remove,pop區別

來源:互聯網
上載者:User

標籤:

以a=[1,2,3] 為例,似乎使用del, remove, pop一個元素2 之後 a都是為 [1,3], 如下:

 

  1. >>> a=[1,2,3] 
  2. >>> a.remove(2) 
  3. >>> a 
  4. [1, 3] 
  5. >>> a=[1,2,3] 
  6. >>> del a[1] 
  7. >>> a 
  8. [1, 3] 
  9. >>> a= [1,2,3] 
  10. >>> a.pop(1) 
  11. >>> a 
  12. [1, 3] 
  13. >>>  

那麼Python對於列表的del, remove, pop操作,它們之間有何區別呢?

 

首先,remove 是刪除首個合格元素。並不是刪除特定的索引。如下例: 本文來自Novell迷網站 http://novell.me

  1. >>> a = [0, 2, 2, 3] 
  2. >>> a.remove(2) 
  3. >>> a 
  4. [0, 2, 3] 

而對於 del 來說,它是根據索引(元素所在位置)來刪除的,如下例:

 

  1. >>> a = [3, 2, 2, 1] 
  2. >>> del a[1] 
  3. [3, 2, 1] 

第1個元素為a[0] --是以0開始計數的。則a[1]是指第2個元素,即裡面的值2.

最後我們再看看pop

  1. >>> a = [4, 3, 5] 
  2. >>> a.pop(1) 
  3. >>> a 
  4. [4, 5] 

pop返回的是你彈出的那個數值。

所以使用時要根據你的具體需求選用合適的方法。 內容來自http://novell.me

另外它們如果出錯,出錯模式也是不一樣的。注意看下面區別:

 

  1. >>> a = [4, 5, 6] 
  2. >>> a.remove(7) 
  3. Traceback (most recent call last): 
  4.   File "<stdin>", line 1, in <module> 
  5. ValueError: list.remove(x): x not in list 
  6. >>> del a[7] 
  7. Traceback (most recent call last): 
  8.   File "<stdin>", line 1, in <module> 
  9. IndexError: list assignment index out of range 
  10. >>> a.pop(7) 
  11. Traceback (most recent call last): 
  12.   File "<stdin>", line 1, in <module> 
  13. IndexError: pop index out of range 

python 數組的del ,remove,pop區別

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.