位置:首頁 > 軟件操作教程 > 編程開發(fā) > Python > 問題詳情

python應用操作——?將2個字典融合

提問人:ylm發(fā)布時間:2020-09-29

adict.update(b_dict)

b_dict和a_dict融合后,賦值給a_dict

a = {'name' : 'Zarten'}

b = {'age' : 18}

a.update(b)

print(a)

print(b)

繼續(xù)查找其他問題的答案?

相關視頻回答
回復(0)
返回頂部