Python 列表 extend() 方法
实例
合并列表fruits = ['apple', 'banana', 'cherry'] cars = ['Ford', 'BMW', 'Volvo'] fruits.extend(cars)运行示例»
定义和用法
extend()
方法将指定的列表元素(或任何可迭代的)添加到当前列表的末尾。
语法
list.extend(iterable)
参数值
参数 | 描述 |
---|---|
iterable | 必须。任何可迭代对象 |
更多例子
实例
将一个元组添加到fruits
列表中:
fruits = ['apple', 'banana', 'cherry'] points = (1, 4, 5, 9) fruits.extend(points)运行示例»