在這篇文章我們來了解關於python字典之中的python update函數的相關知識,在python字典中update函數是什麼意思,這個函數有什麼作用都會在接下來的文章之中得到解答。
python update函數描述
Python 字典(Dictionary) update() 函數把字典dict2的鍵/值對更新到dict。
語法
update()方法語法:
dict.update(dict2)
參數
dict2 -- 加到指定字典dict裡的字典。
傳回值
該方法沒有任何傳回值。
python update函數範例
以下實例展示了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中字典內建的update函數。希望所說的內容以及所舉的例子能對你有幫助。
更多相關知識,請造訪php中文網Python教學欄位。
以上是python update函數定義及作用實例解析的詳細內容。更多資訊請關注PHP中文網其他相關文章!