python的dict拼接有多种方法,其中一种很好用而且速度非常快:

x = {**a, **b}

效果等价于:

x = a.copy()
x.update(b)

注意update()是没有返回值的