Python3 列表
描述
pop() 函數(shù)用于移除列表中的一個元素(默認最后一個元素),并且返回該元素的值。
語法
pop()方法語法:
list.pop(obj=list[-1])
參數(shù)
- obj -- 可選參數(shù),要移除列表元素的對象。
返回值
該方法返回從列表中移除的元素對象。
實例
以下實例展示了 pop()函數(shù)的使用方法:
#!/usr/bin/python3
list1 = ['Google', 'W3CSchool', 'Taobao']
list1.pop()
print ("列表現(xiàn)在為 : ", list1)
list1.pop(1)
print ("列表現(xiàn)在為 : ", list1)
以上實例輸出結(jié)果如下:
列表現(xiàn)在為 : ['Google', 'W3CSchool']
列表現(xiàn)在為 : ['Google']
更多建議: