Python 字典 Dictionary update()方法
Python 字典 Dictionary update()方法
Python 字典(Dictionary) update() 函數(shù)把字典dict2的鍵/值對(duì)更新到dict里。
語(yǔ)法
update()方法語(yǔ)法:
dict.update(dict2)
參數(shù)
- dict2 -- 添加到指定字典dict里的字典。
返回值
該方法沒(méi)有任何返回值。
實(shí)例
以下實(shí)例展示了 update()函數(shù)的使用方法:
實(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'}
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python 模塊
- Python OS 文件/目錄方法
- Python XML 解析
- Python 隊(duì)列
- Python 大O符號(hào)
- Python3 基礎(chǔ)語(yǔ)法
- Python3 文件讀寫(xiě)
- Python MongoDB 數(shù)據(jù)庫(kù)連接 - PyMongo 驅(qū)動(dòng)
- Python log() 函數(shù)
- Python shuffle() 函數(shù)
- Python File close() 方法
- Python os.fchown() 方法
- Python os.fpathconf() 方法
- Python os.lchflags() 方法
- Python os.lseek() 方法
- Python os.utime() 方法
- Python istitle()方法
- Python upper()方法
- Python time asctime()方法