https://www.cnblogs.com/zhaoyingjie/p/8675365.html
合并字典
# 合并两个字典 dic1 = {"你好": "123", "大家好": "456"} dic2 = {"my": "789", "boss": "1011", "code": "1213"} dic1.update(dic2) print(dic1)