时间:2021-07-01 10:21:17 帮助过:16人阅读
以下是pop()方法的语法:
list.pop(obj=list[-1])
参数
返回值
此方法返回从列表中移除对象
例子
下面的例子显示了pop()方法的使用
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc']; print "A List : ", aList.pop(); print "B List : ", aList.pop(2);
当我们运行上面的程序,它会产生以下结果:
A List : abc B List : zara