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()方法