阅读量:0
可以使用append()方法将元素加入列表。append()方法可以在列表的末尾添加一个元素。
例如,下面的代码将元素2加入到列表numbers中:
numbers = [1, 3, 4] numbers.append(2) print(numbers)
输出:
[1, 3, 4, 2]
还可以使用加法操作符将两个列表合并:
list1 = [1, 2, 3] list2 = [4, 5, 6] list3 = list1 + list2 print(list3)
输出:
[1, 2, 3, 4, 5, 6]
这样就可以将list2中的元素加入到list1中。