Home >Backend Development >Python Tutorial >在Python中操作列表之List.pop()方法的使用

在Python中操作列表之List.pop()方法的使用

WBOY
WBOYOriginal
2016-06-06 11:17:251908browse

 pop()方法从列表移除并返回最后一个对象或obj。
语法

以下是pop()方法的语法:

list.pop(obj=list[-1])

参数

  •     obj -- 这是一个可选参数,该对象的索引可以从该列表中删除

返回值

此方法返回从列表中移除对象
例子

下面的例子显示了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


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn