Python字典update()
方法用於將dict2
的鍵值對新增到dict
。此方法不返回任何內容。
語法
以下是update()
方法的語法 -
dict.update(dict2)
引數
dict
中的字典。返回值
範例
以下範例顯示update()
方法的用法 -
#!/usr/bin/python3
dict = {'Name': 'Maxsu', 'Age': 7}
dict2 = {'Sex': 'female' }
dict.update(dict2)
print ("updated dict : ", dict)
當執行上面的程式,它產生以下結果 -
updated dict : {'Sex': 'female', 'Age': 7, 'Name': 'Maxsu'}