字典合并:
def merge(x,y): z = x.copy() z.update(y) return z
Python中字典合并
原文:https://www.cnblogs.com/qingyuanjushi/p/12970200.html