cmp()
比較兩個列表的元祖,返回值有1,0,-1
>>> list1 = [1,3,5]
>>> list2 = [1,2,5]
>>> cmp(list1, list2)
1>>> list1 = [1,3,5]
>>> list2 = [1,3,5]
>>> cmp(list1, list2)
0>>> list1 = [1,3,5]
>>> list2 = [1,3,6]
>>> cmp(list1, list2)
-1
len()
列表元素的個數
>>> list1 = ['a', 1, 'b', 2, 'c', 3]
>>> len(list1)
6
min()
返回列表元素最小值
>>> list1 = [1, 3, 5, 7, 9]
>>> min(list1)
1
max()
返回列表元素最大值
>>> list1 = [1, 3, 5, 7, 9]
>>> max(list1)
9
list()
將元祖轉換為列表
>>> tuple1 = ('a', 'b', 'c', 'd')
>>> list1 = list(tuple1)
>>> list1
['a', 'b', 'c', 'd']
>>> list1 = [1, 3, 5, 7]
>>> list1
[1, 3, 5, 7, 9]
count()
統計某個元素在列表中出現的次數
>>> list1 = ['a', 'a', 'c', 'd', 'p', 'a']
>>> list1.count('a')
3>>> list1.count('c')
1
extend()
在列表末尾一次性追加另乙個序列中的多個值(用新列表擴充套件原來的列表)
>>> list1 = ['1']
>>> list2 = ['2']
>>> list3 = ['3']
>>> list1.extend(list2)
>>> list1
['1', '2']
>>> list1.extend(list3)
>>> list1
['1', '2', '3']
index()
從列表中找出第乙個匹配項的索引位置
>>> list1 = ['zhao', 'qian', 'sun', 'li']
>>> list1.index('zhao')
0>>> list1.index('sun')
2>>> list1.index('qian')
1>>> list1.index('li')
3
insert()
將物件插入列表
>>> list1 = [1, 5, 7, 9]
>>> list1.insert(1,3)
>>> list1
[1, 3, 5, 7, 9]
pop()
移除列表中的某個元素(預設最後乙個元素),並返回該元素的值
>>> list1 = [1,2,3,4,5,6,7,8,9]
>>> list1.pop()
9>>> list1
[1, 2, 3, 4, 5, 6, 7, 8]
>>> list1.pop()
8>>> list1
[1, 2, 3, 4, 5, 6, 7]
remove()
移除列表中某個值的第乙個匹配項
>>> list1 = ['aa', 'bb', 'cc', 'dd', 'ee', 'aa']
>>> list1.remove('aa')
>>> list1
['bb', 'cc', 'dd', 'ee', 'aa']
>>> list1.remove('aa')
>>> list1
['bb', 'cc', 'dd', 'ee']
>>> list1.remove('dd')
>>> list1
['bb', 'cc', 'ee']
reverse()
反向排序列表中的元素
>>> list1 = ['a', 'b', 'c', 'd', 'e']
>>> list1.reverse()
>>> list1
['e', 'd', 'c', 'b', 'a']
>>> list1.reverse()
>>> list1
['a', 'b', 'c', 'd', 'e']
sort()
對原列表進行排序
>>> list1 = ['s', 'o', 'r', 't']
>>> list1.sort()
>>> list1
['o', 'r', 's', 't']
python(列表函式)
一.列表函式 1.sort 原址排序 list1 1,3,5,2,1,23,18 list1.sort print list1 list1 1,3,5,2,1,23,18 list1.sort reverse true print list1 2.reverse 反向列表 list1 1,3,5,2...
python列表方法
x 1 2,3 4 print x輸出 1,2,3,4 count方法統計某個元素在列表中出現的次數 to br or to be count to 2 x 1,2 2,2,2,1,1,2 x.count 1 0 x.count 2 2 extend方法可以在列表的末尾一次性追加另乙個序列中的多個值...
Python 列表方法
count index reverse pop end 作用 在列表list末端新增乙個新的元素object返回值 無 其他 原列表發生改變 a 1,2,3 a 1,2,3,new list.count value l.count value integer return number of occ...