Python 3.1 快速導覽 - 字典的 pop()

字典 (dictionary) 型態 (type) 的 pop() 方法 (method) ,將 key 的 value 從 dict 移除,若無此 kay ,回傳 default

方法描述
dict.pop(key[, default])將 key 的 value 從 dict 移除,若無此 key ,回傳 default


舉例示範如下
d1 = {1:"a", 2:"b", 3:"c"}
print(d1)
d1.pop(2)
print(d1)
print()

d2 = {4:"d", 5:"e", 6:"f"}
print(d2)
t2 = d2.pop(2, "not found")
print(d2)
print(t2)
print()

d3 = {7:"g", 8:"h", 9:"i"}
print(d3)
t3 = d3.pop(7)
print(t3)
print(d3)
print()

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:pop.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
字典dictionary
型態type
方法method


內建型態




沒有留言: