Python 列表 append() 方法
Python基础 2022-06-06 15:26:14小码哥的IT人生shichen
Python 列表 append() 方法
实例
向 fruits 列表添加元素:
fruits = ['apple', 'banana', 'cherry']
fruits.append("orange")
完整实例:
fruits = ["apple", "banana", "cherry"]
fruits.append("orange")
print(fruits)
定义和用法
append() 方法向列表末尾追加元素。
语法
list.append(element)
参数值
参数 | 描述 |
---|---|
element | 必需。任何类型(字符串、数字、对象等)的元素。 |
更多实例
示例代码:
向列表添加一个列表:
a = ["apple", "banana", "cherry"]
b = ["Porsche", "BMW", "Volvo"]
a.append(b)
完整实例:
a = ["apple", "banana", "cherry"]
b = ["Ford", "BMW", "Volvo"]
a.append(b)
print(a)