Python/ref list extend
来自菜鸟教程
<languages />
Python列表extend()方法
例
添加以下元素
cars
到了
fruits
列表:
fruits = ['apple', 'banana', 'cherry'] cars = ['Ford', 'BMW', 'Volvo'] fruits.extend(cars)
定义和用法
The
extend()
方法将指定的列表元素(或任何可迭代的元素)添加到当前列表的末尾。
句法
list.extend(iterable)
参数值
参数 | 描述 |
---|---|
iterable | 需要。任何可迭代的(列表,集合,元组等) |
更多例子
例
将元组添加到
fruits
列表:
fruits = ['apple', 'banana', 'cherry'] points = (1, 4, 5, 9) fruits.extend(points)