例如:
将cars
列表添加到fruits
列表中:
fruits = ['apple', 'banana', 'cherry']
cars = ['Ford', 'BMW', 'Volvo']
fruits.extend(cars)
print(fruits)
1、定义和用法
extend()
方法将指定的列表元素(或任何可迭代的对象)添加到当前列表的末尾。
2、调用语法
list.extend(iterable)
3、参数说明
参数 | 描述 |
iterable | 必需的参数, 任何可迭代的(列表,集合,元组等) |
4、使用示例
例如:
将一个元组添加到fruits
列表中:
fruits = ['apple', 'banana', 'cherry']
points = (1, 4, 5, 9)
fruits.extend(points)
print(fruits)