Python List append()方法
Python List append()方法
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]
相關(guān)文章
- Python 運(yùn)算符
- Python 高級鏈表
- Python3 元組(Tuple)
- Python3 if else 語句
- Python3 面向?qū)ο?/a>
- Python3 日期和時(shí)間
- Python abs() 函數(shù)
- Python modf() 函數(shù)
- Python shuffle() 函數(shù)
- 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()方法