溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python更新字典的方法

發(fā)布時間:2020-07-08 15:43:34 來源:億速云 閱讀:253 作者:清晨 欄目:編程語言

這篇文章將為大家詳細講解有關(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)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(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)容。

AI