Python 列表方法

2021-08-15 02:30:24 字數 1847 閱讀 6165

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 occurrences of value'

作用:統計列表list中某個值value出現的次數

返回值:返回次數(int)

>>> a = [1,1,'a']

>>> a.count(1)

2>>> a.count('a')

1>>> a.count(2)

0

index(value, [start, [stop]])

>>> list.index.__doc__

'l.index(value, [start, [stop]]) -> integer -- return first index of value.\nraises valueerror if the value is not present.'

作用:在列表list中找出某個值value第乙個匹配項的索引位置

返回值:如果列表中有這個值,這返回索引位置;如果沒有則丟擲異常

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

>>> a.index(1)

0>>> a.index(1, 1, -1)

2

list.reverse()

'l.reverse() -- reverse *in place*'

作用:將list中的元素進行反向排序

返回值:無

其他:list被重新排序

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

>>> a.reverse()

>>> a

[3, 2, 1]

list.pop([index])

>>> list.pop.__doc__

'l.pop([index]) -> item -- remove and

return item at index (default last).\nraises indexerror if list is empty or index is out

of range.'

作用:將list中索引為index的元素去掉並返回該元素。index預設為最後乙個元素。 若列表為空或者index超出範圍,則丟擲異常

返回值:索引為index的元素

其他:list發生改變

>>> a = [1, 2, 3, 4, 5]

>>> a.pop()

5>>> a

[1, 2, 3, 4]

>>> a.pop(0)

1>>> a

[2, 3, 4]

>>>

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 列表方法

1.在列表後面追加元素 user while true name input 輸入名字 在列表後面追加元素 print user 2.在列表中插入元素 user 張三 李四 王霧 在 1 位置的前面插入 wdc 在指定索引位置插入元素 user.insert 1,wdc print user 3.在...

Python方法集 列表方法

以下列舉了python中關於列表 list 的全部方法 關於特殊方法,將會在 特殊方法與函式 中介紹 用途 在列表末尾新增元素obj。新增過程中,是對原列表進行增加,而非生成新列表。示例 a 1,2,3,4 none a 1,2,3,4,5 用途 統計某元素在列表 現的次數 示例 b 1,2,3,4...