list.append()
时间: 2023-10-10 17:12:01 浏览: 124
python append用法
`list.append()` 是 Python 中用于在列表末尾添加新元素的方法。它的语法是:
```
list.append(item)
```
其中,`item` 是要添加到列表末尾的元素。
例如,如果有一个空列表 `my_list`,我们可以使用 `append()` 方法向其中添加一个元素:
```
my_list = []
my_list.append('apple')
print(my_list) # 输出 ['apple']
```
如果我们想添加多个元素,可以使用多次 `append()` 方法,或者使用列表拓展(`list.extend()`)方法。
阅读全文