在Python中操作列表之List.append()方法的使用

时间:2022-08-26 22:57:00

 append()方法追加传递obj到现有的列表。
语法

以下是append()方法的语法:

?
1
list.append(obj)

参数

  •     obj -- 这是在列表中要追加的对象。

返回值

此方法不返回任何值,但更新现有的列表。
例子

下面的例子显示了append()方法的使用。

?
1
2
3
4
5
#!/usr/bin/python
 
aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2014 );
print "Updated List : ", aList;

当我们运行上面的程序,它会产生以下结果:

?
1
Updated List : [123, 'xyz', 'zara', 'abc', 2014]