Python學習筆記十一:列表(3)–列表的一些方法

來源:互聯網
上載者:User

(1)append方法

說明:    append(x)    append方法用於在列表的尾部追加元素,參數x是插入元素的值。舉例:

說明:    

append(x)    append方法用於在列表的尾部追加元素,參數x是插入元素的值。
舉例:

 

1 #coding:utf-8
2  test1 = [3,4,6,7,"Hello World"]
3 test1.append(3.9)
4  print test1 #reslut = [3, 4, 6, 7, 'Hello World', 3.8999999999999999]

 

(2)insert方法

說明:

    insert(index,value)

    insert方法用於在列表中插入元素。它有兩個參數,index參數是索引位置,value參數是插入元素的值。

舉例:

  


1 #coding:utf-8
2  test1 = [3,4,6,7,"Hello World"]
3 test1.insert(2, "insert Here")
4  print test1 #result = [3, 4, 'insert Here', 6, 7, 'Hello World']

(3)extend方法

說明:    list1.extend(list2)    extend方法用於將兩個列表合并,將list2列表的值添加到list1列表的後面。舉例:

1 #coding:utf-8
2  test1 = [1,2,3,4]
3 test2 = [5,6,7,8]
4  print test1 #result = [1, 2, 3, 4]
5  test1.extend(test2)
6  print test1 #result = [1, 2, 3, 4, 5, 6, 7, 8

(4)index方法

說明:    index(element)    index方法用於取得元素element第一次出現的索引值舉例:
1 #coding:utf-8
2  test1 = [1,2,3,4]
3  print test1.index(1) #result = 0
4  test2 = [1,1,1,1]
5  print test2.index(1) #result = 0
6 #如果element是一個不存在的值,就會出現錯誤提示
7  print test2.index(2) #ValueError: list.index(x): x not in list

 

(5)remove方法說明:    remove(element)    remove方法用於從列表中移除第一次的值。舉例:
1 #coding:utf-8
2  test1 = ['One','Two','Three','Four','Five']
3  print test1 #result = ['One', 'Two', 'Three', 'Four', 'Five']
4  test1.remove('Two')
5  print test1 #result = ['One', 'Three', 'Four', 'Five']
6 #如果移除一個不存在的值,就會引發一個錯誤
7  test1.remove('Six')
8  print test1 #ValueError: list.remove(x): x not in list

 

(6)pop方法說明:    pop()    pop方法用於刪除列表中最後一個元素舉例:
1 #coding:utf-8
2  test1 = ['One','Two','Three','Four','Five']
3 test1.pop()
4  print test1 #result = ['One', 'Two', 'Three', 'Four']
5 #如果試圖對一個空列表使用pop方法,則會引發一個錯誤!
6  test2 = []
7 test2.pop() #IndexError: pop from empty list

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.