列出 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。