溫馨提示×

溫馨提示×

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

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

Python 字典(Dictionary) update()方法

發(fā)布時間:2020-08-04 00:36:15 來源:網(wǎng)絡 閱讀:2169 作者:ck_god 欄目:編程語言

Python 字典(Dictionary) update()方法
描述:
Python 字典(Dictionary) update() 函數(shù)把字典dict2的鍵/值對更新到dict里。

語法:
update()方法語法:

dict.update(dict2)
參數(shù):
dict2 -- 添加到指定字典dict里的字典。
返回值:
該方法沒有任何返回值。

實例:
以下實例展示了 update()函數(shù)的使用方法:

#!/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'}
```Python 字典(Dictionary) update()方法
描述
Python 字典(Dictionary) update() 函數(shù)把字典dict2的鍵/值對更新到dict里。

語法
update()方法語法:

dict.update(dict2)
參數(shù)
dict2 -- 添加到指定字典dict里的字典。
返回值
該方法沒有任何返回值。

實例
以下實例展示了 update()函數(shù)的使用方法:

#!/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'}
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI