当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python List append方法用法及代码示例


Python 的 list.append(~) 方法将一个项目添加到列表的末尾。

参数

1.x | any type

要添加到列表末尾的项目。

返回值

None

例子

基本用法

要将 'green' 添加到列表 colors 的末尾:

colors = ['red', 'blue']
colors.append('green')
print(colors)



['red', 'blue', 'green']

相关用法


注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python List | append method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。