Python列表 append() 方法
Python列表append() 方法用于在 List 的末尾追加和添加元素。
Syntax: list.append(item)
Parameters:
- item: an item to be added at the end of the list
Returns:
The method doesn’t return any value
示例 1:向列表中添加项目
Python
# my_list
my_list = ['geeks', 'for']
# Add 'geeks' to the list
my_list.append('geeks')
print my_list
Python
# my_list
my_list = ['geeks', 'for', 'geeks']
# another list
another_list = [6, 0, 4, 1]
# append another_list to my_list
my_list.append(another_list)
print my_list
输出:
['geeks', 'for', 'geeks']
示例 2:将列表添加到列表中
Python
# my_list
my_list = ['geeks', 'for', 'geeks']
# another list
another_list = [6, 0, 4, 1]
# append another_list to my_list
my_list.append(another_list)
print my_list
输出:
['geeks', 'for', 'geeks', [6, 0, 4, 1]]
注意:列表是一个对象。如果将另一个列表附加到列表中,则参数列表将是列表末尾的单个对象。