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

字典 (dictionary) 型態 (type) 的 clear() 方法 (method) ,清空 dict 的所有配對資料

方法描述
dict.clear()清空 dict 的所有配對資料


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

d2 = {4:"d", 5:"e", 6:"f"}
print(d2)
d2.clear()
print(d2)
print()

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

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


執行結果如下



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


內建型態




沒有留言: