Python/ref list append
来自菜鸟教程
<languages />
Python清单append()方法
例
将元素添加到
fruits
列表:
fruits = ['apple', 'banana', 'cherry'] fruits.append("orange")
定义和用法
The
append()
方法将元素添加到列表的末尾。
句法
list.append(elmnt)
参数值
参数 | 描述 |
---|---|
elmnt | 需要。任何类型的元素(字符串,数字,对象等) |
更多例子
例
将列表添加到列表:
a = ["apple", "banana", "cherry"] b = ["Ford", "BMW", "Volvo"] a.append(b)