Python中字典合并

字典合并:

def merge(x,y):
    z = x.copy()
    z.update(y)
    return z
原文地址:https://www.cnblogs.com/qingyuanjushi/p/12970200.html