例如:
在fruits
列表中添加一个元素:
fruits = ['apple', 'banana', 'cherry'] fruits.append("orange") print(fruits)
1、定义和用法
append()
方法将元素添加到列表的末尾。
2、调用语法
list.append(elmnt)
3、参数说明
参数 | 描述 |
elmnt | 必需的参数,任何类型的元素(字符串,数字,对象等) |
4、使用示例
例如:
将一个列表添加到另一个列表:
a = ["apple", "banana", "cherry"] b = ["Ford", "BMW", "Volvo"] a.append(b) print(a)