要修改Python字典中的鍵值對(duì),可以使用以下兩種方法:
# 創(chuàng)建一個(gè)字典
d = {'key1': 'value1', 'key2': 'value2'}
# 修改鍵為'key1'的值
d['key1'] = 'new value1'
# 打印修改后的字典
print(d)
輸出:
{'key1': 'new value1', 'key2': 'value2'}
update()
方法來更新字典中的鍵值對(duì)。該方法接受一個(gè)字典作為參數(shù),其中包含要更新的鍵值對(duì)。# 創(chuàng)建一個(gè)字典
d = {'key1': 'value1', 'key2': 'value2'}
# 創(chuàng)建一個(gè)包含要更新的鍵值對(duì)的字典
new_values = {'key1': 'new value1', 'key3': 'value3'}
# 使用update()方法更新字典
d.update(new_values)
# 打印更新后的字典
print(d)
輸出:
{'key1': 'new value1', 'key2': 'value2', 'key3': 'value3'}
注意,在使用update()
方法時(shí),如果要更新的鍵已經(jīng)存在于字典中,那么它的值將被替換為新的值;如果要更新的鍵不存在于字典中,那么該鍵值對(duì)將被添加到字典中。