在python中使用字典update函數的方法
update:update()函數的作用是將字典dict2的鍵或值對更新到dict中。
update()函數語法:
dict.update(dict2)
參數:
dict2:添加到指定字典dict里的字典。
update()函數使用方法:
dict = {'Name': 'Zara', 'Age': 7}
dict2 = {'Sex': 'female' }
dict.update(dict2)
print "Value : %s" % dict
輸出結果為:
Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}