IT培訓(xùn)網(wǎng)
IT在線學(xué)習(xí)
Python中的列表內(nèi)建了許多方法。在下文中,使用“L”代表一個列表,使用“x”代表方法的參數(shù),以便說明列表的使用方法。
1 append()方法
列表的append()方法用于將一個項(xiàng)添加到列表的末尾,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 ()方法
列表的()方法用于將一個項(xiàng)插入指定索引的前一個位置。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()方法用于將可迭代對象的所有項(xiàng)追加到列表中。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()方法用于移除列表中指定值的項(xiàng)。L.remove(x)移除列表中第一個值為x的項(xiàng)。如果沒有值為x的項(xiàng),那么會拋出ValueError異常。
例如,使用remove()方法移除animals列表中值為'dog'的項(xiàng):
- >>> 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()方法用于移除列表中指定位置的項(xiàng),并返回它。如果沒有指定位置,那么L.pop()移除并返回列表的最后一項(xiàng)。
例如,使用pop()方法移除animals列表中指定位置的項(xiàng):
- >>> 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
>>本文地址:http://littlerockbway.com/zhuanye/2020/49104.html
聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
1 您的年齡
2 您的學(xué)歷
3 您更想做哪個方向的工作?