溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python3如何實現合并字典

發(fā)布時間:2020-12-04 10:04:02 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

小編給大家分享一下python3如何實現合并字典,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

合并兩個字典

下面的方法將用于合并兩個字典。

def merge_two_dicts(a, b):
    c = a.copy()   # make a copy of a 
    c.update(b)    # modify keys and values of a with the ones from b
    return c
 
 
a = { 'x': 1, 'y': 2}
b = { 'y': 3, 'z': 4}
print(merge_two_dicts(a, b))
# {'y': 3, 'x': 1, 'z': 4}

Python 3.5 或更高版本中,我們也可以用以下方式合并字典:

def merge_dictionaries(a, b)
   return {**a, **b}
 
 
a = { 'x': 1, 'y': 2}
b = { 'y': 3, 'z': 4}
print(merge_dictionaries(a, b))
# {'y': 3, 'x': 1, 'z': 4}

將兩個列表轉化為字典

如下方法將會把兩個列表轉化為單個字典。

def to_dictionary(keys, values):
    return dict(zip(keys, values))
 
 
keys = ["a", "b", "c"]    
values = [2, 3, 4]
print(to_dictionary(keys, values))
# {'a': 2, 'c': 4, 'b': 3}

看完了這篇文章,相信你對python3如何實現合并字典有了一定的了解,想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI