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

字典 (dictionary) 型態 (type) 的 popitem() 方法 (method) ,從 dict 移除任意一組 key:value

方法描述
dict.popitem()


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

d1.popitem()
print(d1)
print()

d1.popitem()
print(d1)
print()

d1.popitem()
print(d1)
print()

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


執行結果如下



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


內建型態




沒有留言: