位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——将2个字典融合

提问人:ylm发布时间: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)

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部