Python 3.9.0 或更高版本:
z = x | y
Python 3.5 或稍后:
z = {**x, **y}
Python 2 及更早版本:
创建自定义 merge_two_dicts函数:
def merge_two_dicts(x, y): z = x.copy() # Start with keys and values of x z.update(y) # Modifies z with keys and values of y return z
用法:
z = merge_two_dicts(x, y)
说明:
注意:
以上是如何在Python中高效地合并两个字典?的详细内容。更多信息请关注PHP中文网其他相关文章!