python中append函数怎么用 python中append函数的使用方法

主机教程 建站分享 2年前 (2022-09-29) 201次浏览

文章摘要:python中append函数怎么用 python中append函数的使用方法

在python中使用append函数的方法 append:append()函数的作用是用于在列表末尾添加新的对 […]

在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]


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中append函数怎么用 python中append函数的使用方法
文章链接:http://www.7966.org/post/15321.html
转载请注明出处

喜欢 (0)