Python 字典 Dictionary update()方法
Python 字典 Dictionary update()方法
Python 字典(Dictionary) update() 函數把字典dict2的鍵/值對更新到dict里。
語法
update()方法語法:
dict.update(dict2)
參數
- dict2 -- 添加到指定字典dict里的字典。
返回值
該方法沒有任何返回值。
實例
以下實例展示了 update()函數的使用方法:
實例
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} dict2 = {'Sex': 'female' } dict.update(dict2) print "Value : %s" % dict
以上實例輸出結果為:
Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}
相關文章
- Python 循環語句
- Python 模塊
- Python OS 文件/目錄方法
- Python XML 解析
- Python 隊列
- Python 大O符號
- Python3 基礎語法
- Python3 文件讀寫
- Python MongoDB 數據庫連接 - PyMongo 驅動
- Python log() 函數
- Python shuffle() 函數
- 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()方法