在本教程中,我们将借助示例了解 Python 列表 append() 方法。
append()
方法将一个项目添加到列表的末尾。
示例
currencies = ['Dollar', 'Euro', 'Pound']
# append 'Yen' to the list
currencies.append('Yen')
print(currencies)
# Output: ['Dollar', 'Euro', 'Pound', 'Yen']
用法:
用法:
list.append(item)
参数:
该方法采用单个参数
item
- 要添加到列表末尾的项目(数字、字符串、列表等)
返回:
该方法不返回任何值(返回 None
)。
示例 1:将元素添加到列表
# animals list
animals = ['cat', 'dog', 'rabbit']
# Add 'guinea pig' to the list
animals.append('guinea pig')
print('Updated animals list: ', animals)
输出
Updated animals list: ['cat', 'dog', 'rabbit', 'guinea pig']
示例 2:将列表添加到列表
# animals list
animals = ['cat', 'dog', 'rabbit']
# list of wild animals
wild_animals = ['tiger', 'fox']
# appending wild_animals list to animals
animals.append(wild_animals)
print('Updated animals list: ', animals)
输出
Updated animals list: ['cat', 'dog', 'rabbit', ['tiger', 'fox']]
在程序中,将单个项目(wild_animals
列表)添加到animals
列表中。
注意:如果您需要将列表的项目(而不是列表本身)添加到另一个列表,请使用List extend.
相关用法
- Python List remove()用法及代码示例
- Python List insert()用法及代码示例
- Python List clear()用法及代码示例
- Python List reverse()用法及代码示例
- Python List cmp()用法及代码示例
- Python List pop()用法及代码示例
- Python List index()用法及代码示例
- Python List sort()用法及代码示例
- Python List list()用法及代码示例
- Python List max()用法及代码示例
- Python List count()用法及代码示例
- Python List len()用法及代码示例
- Python List min()用法及代码示例
- Python List copy()用法及代码示例
- Python List extend()用法及代码示例
- Python Lock acquire()用法及代码示例
- Python Lock release()用法及代码示例
- Python Lock locked()用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
注:本文由纯净天空筛选整理自 Python List append()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。