python的append方法怎么用

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

append()方法语法:

list.append(obj)

该方法无返回值,但是会修改原来的列表。

以下实例展示了 append()函数的使用方法:

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

以上实例输出结果如下:

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

更多学习内容,请点击Python学习网。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python的append方法怎么用