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

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

WBOY
WBOYOriginal
2016-06-06 11:17:251914Durchsuche

 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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn