(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