#?–?*?–?coding:utf-8?–?*?-
dictionary?=?{‘a’:'one’,'b’:'two’,'c’:'three’}#創建字典
dictionary1?=?{1:’test1′,2:’test2′,3:’test3′}?#創建字典
print?dictionary,dictionary1?#打印輸出字典
print?dictionary['b']?#打印輸出字典dictionary中key為b的值
dictionary['s']?=?‘test’#添加
print?dictionary
dictionary['a']?=?‘mod’#key存在就修改
print?dictionary
dictionary['a']?=?‘one’
dictionary.pop(‘s’)#刪除key對應的值
print?dictionary
for?i?in?dictionary:#遍歷字典
print?‘dictionary[%s]?=?‘?%?i?,dictionary[i]
print?dictionary.keys()#返回字典中key列表
print?dictionary.values()#返回字典中value列表
print?dictionary.get(‘c’)#返回key對應的值
#dictionary.update(dictionary1)#把字典dictionary1更新到字典dictionary中,dictionary中原有內容保持不變。
#print?dictionary#測試這兩句的時候將前面的#去掉即可
print?‘使用copy()前的結果’,dictionary1
dictionary1?=?dictionary.copy()#將dictionary的內容copy()到dictionary1中
print?‘使用copy()後的結果’,dictionary1
print?sorted(dictionary.items())#sorted()為字典排序
dictionary.clear()#清空字典
print?dictionary
相信這段代碼對妳有所幫助吧。
文章來源:/11