当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python List extend()用法及代码示例


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