Python List append()方法
Python List append()方法
append() 方法用于在列表末尾添加新的對象。
語法
append()方法語法:
list.append(obj)
參數
- obj -- 添加到列表末尾的對象。
返回值
該方法無返回值,但是會修改原來的列表。
實例
以下實例展示了 append()函數的使用方法:
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc']; aList.append( 2009 ); print "Updated List : ", aList;
以上實例輸出結果如下:
Updated List : [123, 'xyz', 'zara', 'abc', 2009]
相關文章
- Python 運算符
- Python 高級鏈表
- Python3 元組(Tuple)
- Python3 if else 語句
- Python3 面向對象
- Python3 日期和時間
- Python abs() 函數
- Python modf() 函數
- Python shuffle() 函數
- Python File truncate() 方法
- Python os.getcwdu() 方法
- Python os.renames() 方法
- Python os.tmpfile() 方法
- Python os.utime() 方法
- Python title()方法
- Python List min()方法
- Python 字典 Dictionary type()方法
- Python Tuple 元組 len()方法
- Python time strftime() 方法
- Python time tzset()方法