黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python List append()方法

Python List append()方法

Python 列表 ListPython 列表 List

append() 方法用于在列表末尾添加新的對象。

 

語法

append()方法語法:

list.append(obj)

 

參數(shù)

  • obj -- 添加到列表末尾的對象。

 

返回值

該方法無返回值,但是會修改原來的列表。

 

實(shí)例

以下實(shí)例展示了 append()函數(shù)的使用方法:

#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2009 );
print "Updated List : ", aList;

以上實(shí)例輸出結(jié)果如下:

Updated List :  [123, 'xyz', 'zara', 'abc', 2009]

Python 列表 ListPython 列表 List

下一節(jié):Python List count()方法

Python 教程

相關(guān)文章