1
建網(wǎng)站原本是網(wǎng)站策劃師、網(wǎng)絡(luò)程序員、網(wǎng)頁設(shè)計師等,應(yīng)用各種網(wǎng)絡(luò)程序開發(fā)技術(shù)和網(wǎng)頁設(shè)計技術(shù)配合操作的協(xié)同工作。成都創(chuàng)新互聯(lián)公司專業(yè)提供網(wǎng)站設(shè)計制作、做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站制作(企業(yè)站、響應(yīng)式網(wǎng)站開發(fā)、電商門戶網(wǎng)站)等服務(wù),從網(wǎng)站深度策劃、搜索引擎友好度優(yōu)化到用戶體驗的提升,我們力求做到極致!
len(list)
列表元素個數(shù)
2
max(list)
返回列表元素最大值
3
min(list)
返回列表元素最小值
4
list(seq)
將元組轉(zhuǎn)換為列表
序號
方法
1
list.append(obj)
在列表末尾添加新的對象
2
list.count(obj)
統(tǒng)計某個元素在列表中出現(xiàn)的次數(shù)
3
list.extend(seq)
在列表末尾一次性追加另一個序列中的多個值(用新列表擴展原來的列表)
4
list.index(obj)
從列表中找出某個值第一個匹配項的索引位置
5
list.insert(index, obj)
將對象插入列表
6
list.pop([index=-1])
移除列表中的一個元素(默認(rèn)最后一個元素),并且返回該元素的值
7
list.remove(obj)
移除列表中某個值的第一個匹配項
8
list.reverse()
反向列表中元素
9
list.sort( key=None, reverse=False)
對原列表進(jìn)行排序
10
list.clear()
清空列表
11
list.copy()
復(fù)制列表
定義列表有兩個辦法。
1.使用特征符[],比如[1,2,3],這就定義了一個列表
2.使用工廠函數(shù)list,比如list(1,2,3)也定義了一個列表
你說的函數(shù)是自定義函數(shù)還是使用內(nèi)置函數(shù)?
使用內(nèi)置函數(shù)那就是使用工廠函數(shù)(有點小特殊的內(nèi)置函數(shù))list()就行。
如果自定義函數(shù)里定義列表就上面兩個方法隨意用了
Python中的列表內(nèi)建了許多方法。在下文中,使用“L”代表一個列表,使用“x”代表方法的參數(shù),以便說明列表的使用方法。
1 append()方法
列表的append()方法用于將一個項添加到列表的末尾,L.append(x)等價于L[len(L):] = [x]。
例如,使用append()方法分別將'cow'和'elephant'添加到animals列表的末尾:
animals?=?['cat',?'dog',?'fish',?'dog']
animals.append('cow')???#?等價于animals[4:]=['cow']
animals
['cat',?'dog',?'fish',?'dog',?'cow']
animals.append('elephant')???#?等價于animals[5:]=['elephant']
animals
['cat',?'dog',?'fish',?'dog',?'cow',?'elephant']
2 ()方法
列表的()方法用于將一個項插入指定索引的前一個位置。L.(0, x)是將x插入列表的最前面,L.(len(L)), x)等價于L.append(x)。
例如,使用()方法分別將'cow'和'elephant'插入animals列表:
animals?=??['cat',?'dog',?'fish',?'dog']
animals.(0,?'cow')
animals
['cow',?'cat',?'dog',?'fish',?'dog']
animals.(3,?'elephant')
animals
['cow',?'cat',?'dog',?'elephant',?'fish',?'dog']
3 extend()方法
列表的extend()方法用于將可迭代對象的所有項追加到列表中。L.extend(iterable)等價于L[len(L):] = iterable。extend()和append()方法的區(qū)別是,extend()方法會將可迭代對象“展開”。
例如,分別使用append()方法和extend()方法在animals列表后面追加一個包含'cow'和'elephant'的列表:
animals?=?['cat',?'dog',?'fish',?'dog']
animals.append(['cow',?'elephant'])???#?此處append()參數(shù)是一個列表
animals
['cat',?'dog',?'fish',?'dog',?['cow',?'elephant']]
animals?=?['cat',?'dog',?'fish',?'dog']
animals.extend(['cow',?'elephant'])???#?此處extend()參數(shù)也是一個列表
animals
['cat',?'dog',?'fish',?'dog',?'cow',?'elephant']
4 remove()方法
列表的remove()方法用于移除列表中指定值的項。L.remove(x)移除列表中第一個值為x的項。如果沒有值為x的項,那么會拋出ValueError異常。
例如,使用remove()方法移除animals列表中值為'dog'的項:
animals?=?['cat',?'dog',?'fish',?'dog']
animals.remove('dog')
animals
['cat',?'fish',?'dog']
animals.remove('dog')
animals
['cat',?'fish']
animals.remove('dog')
Traceback?(most?recent?call?last):
File?"",?line?1,?in
ValueError:?list.remove(x):?x?not?in?list
5 pop()方法
列表的pop()方法用于移除列表中指定位置的項,并返回它。如果沒有指定位置,那么L.pop()移除并返回列表的最后一項。
例如,使用pop()方法移除animals列表中指定位置的項:
animals?=?['cat',?'dog',?'fish',?'dog']
animals.pop()
'dog'
animals
['cat',?'dog',?'fish']
animals.pop(2)
'fish'
animals
['cat',?'dog']
在調(diào)用前面的列表方法后,并沒有打印任何值,而pop()方法打印了“彈出”的值。包括append()、()、pop()在內(nèi)的方法都是“原地操作”。原地操作(又稱為就地操作)的方法只是修改了列表本身,并不返回修改后的列表。
在類型轉(zhuǎn)換時使用的int()函數(shù),str()函數(shù)都有返回值:
number?=?123
mystring?=?str(number)???#?將返回值賦給變量mystring
mystring
'123'
但是在使用“原地操作”時,大部分則不會有返回值,包括pop()方法也只是返回了被“彈出”的值,并沒有返回修改后的列表:
animals?=?['cat',?'dog',?'fish',?'dog']
new_animals?=?animals.append('cow')
print(new_animals)
None
關(guān)于深度學(xué)習(xí)的基礎(chǔ)問題可以看下這個網(wǎng)頁的視頻教程,網(wǎng)頁鏈接,希望我的回答能幫到你。
網(wǎng)頁題目:python創(chuàng)建函數(shù)列表,python創(chuàng)建函數(shù)列表funcs
分享鏈接:http://redsoil1982.com.cn/article36/dsepipg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、用戶體驗、外貿(mào)建站、營銷型網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)