list.append():方法用于在列表末尾添加新的对象;
该方法没有返回值,但是会修改原来的列表;
格式如下:listname.append(object)
listname:操作的列表名
append():使用的方法
object:添加的对象
实例如下:
list1=[1,2,3,4,5,6] print(list1) list1.append(10) print(list1)
#输出
[1, 2, 3, 4, 5, 6]
[1, 2, 3, 4, 5, 6, 10]
进程已结束,退出代码为 0