1. 程式人生 > >python3 快速合並字典

python3 快速合並字典

快速 原理 python3.5 而且 python3 特殊性 相加 pri logs

當有兩個字典需要合並時,考慮到字典的特殊性,你需要先將其轉成列表的形式,相加運算後再轉回字典,如下:

x = {‘a‘:1, ‘b‘:3}
y = {‘c‘: 5, ‘d‘: 8}
z = dict(list(x.items()) + list(y.items()))
print(z)
# {‘d‘: 8, ‘c‘: 5, ‘a‘: 1, ‘b‘: 3}

python3.5中提供了更加方便的方法:

x = {‘a‘:1, ‘b‘:3}
y = {‘c‘: 5, ‘d‘: 8}
#z = dict(list(x.items()) + list(y.items()))
z = {**x, **y}
print(z)

結果與上面的一樣,而且速度更快(不知道原理,只是看資料說更快),這方法很python 有木有?

python3 快速合並字典