您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)python更新字典的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
python中可以使用update()函數(shù)更新字典。
update()方法語法:
dict.update(dict2)
D.update(key/value)
參數(shù)
dict2 -- 添加到指定字典dict里的字典。
key/value -- 用于更新字典的鍵/值對,此處可以表示鍵/值對的方法有很多,請看實例。
示例:
1、字典dict2的鍵/值對更新到dict里
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} dict2 = {'Sex': 'female' } dict.update(dict2) print "Value : %s" % dict
輸出結(jié)果:
Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}
2、更新字典中的鍵值對
# !/usr/bin/python3 D = {'one': 1, 'two': 2} D.update({'three': 3, 'four': 4}) # 傳一個字典 print(D) D.update(five=5, six=6) # 傳關(guān)鍵字 print(D) D.update([('seven', 7), ('eight', 8)]) # 傳一個包含一個或多個元祖的列表 print(D) D.update(zip(['eleven', 'twelve'], [11, 12])) # 傳一個zip()函數(shù) print(D) D.update(one=111, two=222) # 使用以上任意方法修改存在的鍵對應(yīng)的值 print(D)
輸出結(jié)果:
{'one': 1, 'three': 3, 'two': 2, 'four': 4}
{'one': 1, 'four': 4, 'six': 6, 'two': 2, 'five': 5, 'three': 3}
{'one': 1, 'eight': 8, 'seven': 7, 'four': 4, 'six': 6, 'two': 2, 'five': 5, 'three': 3}
{'one': 1, 'eight': 8, 'seven': 7, 'four': 4, 'eleven': 11, 'six': 6, 'twelve': 12, 'two': 2, 'five': 5, 'three': 3}
{'four': 4, 'seven': 7, 'twelve': 12, 'six': 6, 'eleven': 11, 'three': 3, 'one': 111, 'eight': 8, 'two': 222, 'five': 5}
關(guān)于python更新字典的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。