>>animals=[& 39;cat& 39;,& 39;dog& 39;,& 39;fish& 39;,& 39;dog& 3 "> 国产综合亚洲综合AV人片,狠狠色噜噜色狠狠狠综合久久
400-650-7353
您所在的位置:首頁(yè) > IT干貨資料 > python > 【Python基礎(chǔ)知識(shí)】Python中列表的方法(下)

【Python基礎(chǔ)知識(shí)】Python中列表的方法(下)

  • 發(fā)布: python培訓(xùn)
  • 來(lái)源:python干貨資料
  • 2020-09-25 11:51:52
  • 閱讀()
  • 分享
  • 手機(jī)端入口

1. clear()方法

列表的clear()方法用于移除列表中的全部項(xiàng)。L.clear()等價(jià)于del L[:]。

例如,使用clear()方法移除animals列表中的全部項(xiàng):

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.clear() 
  3. >>> animals 
  4. [] 

2. count()方法

列表的count()方法用于返回指定值在列表中出現(xiàn)的次數(shù):

例如,使用count()方法分別返回animals列表中'dog'、'cat'和'cow'出現(xiàn)的次數(shù):

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.count('dog'
  3. 2 
  4. >>> animals.count('cat'
  5. 1 
  6. >>> animals.count('cow'
  7. 0 

3. index()方法

列表的index()方法用于返回列表中指定值的項(xiàng)的從零開始的索引。L.index(x) 返回列表中第一個(gè)值為 x 的項(xiàng)的從零開始的索引。如果沒(méi)有值為x的項(xiàng),那么會(huì)拋出ValueError異常。

例如,使用index()方法分別返回animals列表中值為'dog'和'cow'的項(xiàng)的從零開始的索引:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.index('dog'
  3. 1 
  4. >>> animals.index('cow')   # 'cow'不在列表中 
  5. Traceback (most recent call last): 
  6.   File "", line 1in  
  7. ValueError: 'cow' is not in list 

可以指定查找索引項(xiàng)的的起始值,L.index(x, n)從列表的第n+1項(xiàng)開始查找:

  1. >>> animals.index('dog'2)   # 從第3項(xiàng)開始查找,這樣就忽略了第一個(gè)'dog' 
  2. 3 

也可以同時(shí)指定查找索引項(xiàng)的起始值和結(jié)束值(包括起始值,不包括結(jié)束值),這樣就會(huì)在該范圍內(nèi)查找:

  1. >>> animals.index('dog'24)   # 查找范圍是第3項(xiàng)和第4項(xiàng) 
  2. 3 
  3. >>> animals.index('dog'23)  # 查找范圍只有第3項(xiàng),沒(méi)有'dog' 
  4. Traceback (most recent call last): 
  5.   File "", line 1in  
  6. ValueError: 'dog' is not in list 

如果對(duì)Python開發(fā)感興趣或者想要深入學(xué)習(xí)的現(xiàn)在可以免費(fèi)領(lǐng)取學(xué)習(xí)大禮包哦(點(diǎn)擊領(lǐng)取80G課程資料 備注:領(lǐng)資料)。

【Python基礎(chǔ)知識(shí)】Python中列表的方法(下)

4 sort()方法

列表的sort()方法用于將列表排序。

例如,使用sort()方法將animals列表按字典順序排序:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.sort() 
  3. >>> animals 
  4. ['cat''dog''dog''fish'

使用sort()方法將數(shù)字列表排序:

  1. >>> numbers = [314159
  2. >>> numbers.sort() 
  3. >>> numbers 
  4. [113459

sort方法還可以使用參數(shù)改變列表的排序規(guī)則,這需要使用自定義參數(shù),將在第七章進(jìn)行詳細(xì)闡述。

5. reverse()方法

列表的reverse()方法用于反轉(zhuǎn)整個(gè)列表。

例如,使用reverse()方法反轉(zhuǎn)animals列表:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.reverse() 
  3. >>> animals 
  4. ['dog''fish''dog''cat'

6. copy()方法

列表的copy()方法用于返回一份列表的淺拷貝。L.copy()等價(jià)于L[:]。

要復(fù)制一份列表,最先想到的方法可能是將列表賦值給另一個(gè)變量,不過(guò)這是行不通的:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals_copy = animals 
  3. >>> animals_copy 
  4. ['cat''dog''fish''dog'
  5. >>> animals.append('cow'
  6. >>> animals 
  7. ['cat''dog''fish''dog''cow'
  8. >>> animals_copy 
  9. ['cat''dog''fish''dog''cow'

運(yùn)行結(jié)果顯然不符合預(yù)期。簡(jiǎn)單的“復(fù)制”只是給當(dāng)前列表取了一個(gè)別名,用一個(gè)名稱修改列表的內(nèi)容,也會(huì)影響到用其他名字顯示的列表。

使用copy()方法復(fù)制animals列表:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> real_animals_copy = animals.copy() 
  3. >>> real_animals_copy 
  4. ['cat''dog''fish''dog'
  5. >>> animals.append('cow'
  6. >>> real_animals_copy.append('elephant'
  7. >>> animals 
  8. ['cat''dog''fish''dog''cow'
  9. >>> real_animals_copy 
  10. ['cat''dog''fish''dog''elephant'

運(yùn)行結(jié)果符合預(yù)期,原始列表沒(méi)有影響到備份列表,備份列表也沒(méi)有影響到原始列表。

文章“【Python基礎(chǔ)知識(shí)】Python中列表的方法(下)”已幫助

>>本文地址:http://liujunjsxg.cn/zhuanye/2020/56482.html

THE END  

聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。

1 您的年齡

2 您的學(xué)歷

3 您更想做哪個(gè)方向的工作?

獲取測(cè)試結(jié)果
  • 大前端大前端
  • 大數(shù)據(jù)大數(shù)據(jù)
  • 互聯(lián)網(wǎng)營(yíng)銷互聯(lián)網(wǎng)營(yíng)銷
  • JavaJava
  • Linux云計(jì)算Linux
  • Python+人工智能Python
  • 嵌入式物聯(lián)網(wǎng)嵌入式
  • 全域電商運(yùn)營(yíng)全域電商運(yùn)營(yíng)
  • 軟件測(cè)試軟件測(cè)試
  • 室內(nèi)設(shè)計(jì)室內(nèi)設(shè)計(jì)
  • 平面設(shè)計(jì)平面設(shè)計(jì)
  • 電商設(shè)計(jì)電商設(shè)計(jì)
  • 網(wǎng)頁(yè)設(shè)計(jì)網(wǎng)頁(yè)設(shè)計(jì)
  • 全鏈路UI/UE設(shè)計(jì)UI設(shè)計(jì)
  • VR/AR游戲開發(fā)VR/AR
  • 網(wǎng)絡(luò)安全網(wǎng)絡(luò)安全
  • 新媒體與短視頻運(yùn)營(yíng)新媒體
  • 直播帶貨直播帶貨
  • 智能機(jī)器人軟件開發(fā)智能機(jī)器人
 

快速通道fast track

近期開班時(shí)間TIME