列出 extend() 方法
extend() 方法用於擴展列表,它通過在當前列表的末尾插入元素列表來擴展列表。使用此列表(當前列表,我們必須在其中添加元素)調用該方法,並提供另一個列表(或任何可迭代對象)作為參數。
用法:
list_name.index(iterable)
參數:
iterable
– 它表示元素列表或任何可迭代對象。
返回值:
這個方法的返回類型是<class 'NoneType'>
,它什麽都不返回。
範例1:
# Python List extend() Method with Example
# declaring the lists
cars = ["Porsche", "Audi", "Lexus", "Audi"]
more = ["Porsche", "BMW", "Lamborghini"]
# printing the lists
print("cars:", cars)
print("more:", more)
# extending the cars i.e. inserting
# the elements of more list into the list cars
cars.extend(more)
# printing the list after extending
print("cars:", cars)
輸出
cars: ['Porsche', 'Audi', 'Lexus', 'Audi'] more: ['Porsche', 'BMW', 'Lamborghini'] cars: ['Porsche', 'Audi', 'Lexus', 'Audi', 'Porsche', 'BMW', 'Lamborghini']
範例2:
# Python List extend() Method with Example
# declaring the list
x = [10, 20, 30]
print("x:", x)
# inserting list elements and printing
x.extend([40, 50, 60])
print("x:", x)
# inserting set elements and printing
x.extend({70, 80, 90})
print("x:", x)
輸出
x: [10, 20, 30] x: [10, 20, 30, 40, 50, 60] x: [10, 20, 30, 40, 50, 60, 80, 90, 70]
相關用法
- Python List remove()用法及代碼示例
- Python List clear()用法及代碼示例
- Python List pop()用法及代碼示例
- Python List index()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List count()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List copy()用法及代碼示例
- Python Lock acquire()用法及代碼示例
- Python Lock release()用法及代碼示例
- Python Lock locked()用法及代碼示例
- Python numpy.less()用法及代碼示例
- Python Sympy Permutation.list()用法及代碼示例
- Python Matplotlib.figure.Figure.subplots_adjust()用法及代碼示例
- Python numpy.tril()用法及代碼示例
- Python Matplotlib.pyplot.matshow()用法及代碼示例
- Python __file__用法及代碼示例
- Python Pandas Panel.add()用法及代碼示例
- Python Matplotlib.axis.Tick.get_window_extent()用法及代碼示例
- Python numpy.fromstring()用法及代碼示例
注:本文由純淨天空篩選整理自 Python List extend() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。