真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python字典(Dictionary)update()方法


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

語法:
update()方法語法:

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

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

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7}
dict2 = {'Sex': 'female' }

dict.update(dict2)
print "Value : %s" %  dict
以上實(shí)例輸出結(jié)果為:

Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}
```Python 字典(Dictionary) update()方法
描述
Python 字典(Dictionary) update() 函數(shù)把字典dict2的鍵/值對(duì)更新到dict里。

語法
update()方法語法:

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

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

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7}
dict2 = {'Sex': 'female' }

dict.update(dict2)
print "Value : %s" %  dict
以上實(shí)例輸出結(jié)果為:

Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}

網(wǎng)頁標(biāo)題:Python字典(Dictionary)update()方法
URL鏈接:http://weahome.cn/article/jsippd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部