Python List pop()方法
Python List pop()方法
pop() 函數用于移除列表中的一個元素(默認最后一個元素),并且返回該元素的值。
語法
pop()方法語法:
list.pop([index=-1])
參數
- obj -- 可選參數,要移除列表元素的索引值,不能超過列表總長度,默認為 index=-1,刪除最后一個列表值。
返回值
該方法返回從列表中移除的元素對象。
實例
以下實例展示了 pop()函數的使用方法:
#!/usr/bin/python3 #coding=utf-8 list1 = ['Google', 'Codebaoku', 'Taobao'] list_pop=list1.pop(1) print "刪除的項為 :", list_pop print "列表現在為 : ", list1
以上實例輸出結果如下:
刪除的項為 : Codebaoku 列表現在為 : ['Google', 'Taobao']
相關文章
- Python break 語句
- Python 列表 List
- Python 字典 Dictionary
- Python 異常處理
- Python 列表
- Python 二叉樹
- Python 搜索樹
- Python3 日期和時間
- Python File flush() 方法
- Python File next() 方法
- Python os.major() 方法
- Python os.mkfifo() 方法
- Python os.openpty() 方法
- Python center()方法
- Python isspace()方法
- Python rjust()方法
- Python List len()方法
- Python List insert()方法
- Python List sort()方法
- Python 字典 Dictionary fromkeys()方法