在python中使用append函數的方法
append:append()函數的作用是用于在列表末尾添加新的對象。
append()函數語法:
list.append(obj)
參數:
obj:添加到列表末尾的對象。
append()函數使用方法:
aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2009 );
print "Updated List : ", aList;
輸出結果為:
Updated List : [123, 'xyz', 'zara', 'abc', 2009]