400-650-7353
您所在的位置:首頁 > IT干貨資料 > python > 【Python基礎(chǔ)知識】Python中列表的方法(上)

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

  • 發(fā)布: python培訓(xùn)
  • 來源:python干貨資料
  • 2020-07-01 16:31:24
  • 閱讀()
  • 分享
  • 手機(jī)端入口

Python中的列表內(nèi)建了許多方法。在下文中,使用“L”代表一個列表,使用“x”代表方法的參數(shù),以便說明列表的使用方法。

1 append()方法

列表的append()方法用于將一個項(xiàng)添加到列表的末尾,L.append(x)等價于L[len(L):] = [x]。

例如,使用append()方法分別將'cow'和'elephant'添加到animals列表的末尾:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.append('cow')   # 等價于animals[4:]=['cow'] 
  3. >>> animals 
  4. ['cat''dog''fish''dog''cow'
  5. >>> animals.append('elephant')   # 等價于animals[5:]=['elephant'] 
  6. >>> animals 
  7. ['cat''dog''fish''dog''cow''elephant'

2 ()方法

列表的()方法用于將一個項(xiàng)插入指定索引的前一個位置。L.(0, x)是將x插入列表的最前面,L.(len(L)), x)等價于L.append(x)。

例如,使用()方法分別將'cow'和'elephant'插入animals列表:

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

3 extend()方法

列表的extend()方法用于將可迭代對象的所有項(xiàng)追加到列表中。L.extend(iterable)等價于L[len(L):] = iterable。extend()和append()方法的區(qū)別是,extend()方法會將可迭代對象“展開”。

例如,分別使用append()方法和extend()方法在animals列表后面追加一個包含'cow'和'elephant'的列表:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.append(['cow''elephant'])   # 此處append()參數(shù)是一個列表 
  3. >>> animals 
  4. ['cat''dog''fish''dog', ['cow''elephant']] 
  5. >>> animals = ['cat''dog''fish''dog'
  6. >>> animals.extend(['cow''elephant'])   # 此處extend()參數(shù)也是一個列表 
  7. >>> animals 
  8. ['cat''dog''fish''dog''cow''elephant'

4 remove()方法

列表的remove()方法用于移除列表中指定值的項(xiàng)。L.remove(x)移除列表中第一個值為x的項(xiàng)。如果沒有值為x的項(xiàng),那么會拋出ValueError異常。

例如,使用remove()方法移除animals列表中值為'dog'的項(xiàng):

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.remove('dog'
  3. >>> animals 
  4. ['cat''fish''dog'
  5. >>> animals.remove('dog'
  6. >>> animals 
  7. ['cat''fish'
  8. >>> animals.remove('dog'
  9. Traceback (most recent call last): 
  10.   File "", line 1in  
  11. ValueError: list.remove(x): x not in list 

5 pop()方法

列表的pop()方法用于移除列表中指定位置的項(xiàng),并返回它。如果沒有指定位置,那么L.pop()移除并返回列表的最后一項(xiàng)。

例如,使用pop()方法移除animals列表中指定位置的項(xiàng):

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> animals.pop() 
  3. 'dog' 
  4. >>> animals 
  5. ['cat''dog''fish'
  6. >>> animals.pop(2
  7. 'fish' 
  8. >>> animals 
  9. ['cat''dog'

在調(diào)用前面的列表方法后,并沒有打印任何值,而pop()方法打印了“彈出”的值。包括append()、()、pop()在內(nèi)的方法都是“原地操作”。原地操作(又稱為就地操作)的方法只是修改了列表本身,并不返回修改后的列表。

在類型轉(zhuǎn)換時使用的int()函數(shù),str()函數(shù)都有返回值:

  1. >>> number = 123 
  2. >>> mystring = str(number)   # 將返回值賦給變量mystring 
  3. >>> mystring 
  4. '123' 

但是在使用“原地操作”時,大部分則不會有返回值,包括pop()方法也只是返回了被“彈出”的值,并沒有返回修改后的列表:

  1. >>> animals = ['cat''dog''fish''dog'
  2. >>> new_animals = animals.append('cow'
  3. >>> print(new_animals) 
  4. None 

 

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

>>本文地址:http://littlerockbway.com/zhuanye/2020/49104.html

THE END  

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

1 您的年齡

2 您的學(xué)歷

3 您更想做哪個方向的工作?

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

快速通道fast track

近期開班時間TIME