python中两个字典的合并

Posted fh-fendou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中两个字典的合并相关的知识,希望对你有一定的参考价值。

dictMerged2 = dict( dict1, **dict2 ) #个人喜欢用这种

举例:

dict1 =  "name":"owen", "age": 18 
dict2 =  "birthday": "1999-11-22", "height": 180 

合并两个字典得到:

 "name":"owen", "age": 18, "birthday": "1999-11-22", "height": 180 

  

方法1:

dictMerged1 = dict( dict1.items() + dict2.items() )

方法2:

dictMerged2 = dict( dict1, **dict2 )

方法 2 等同于:

dictMerged2 = dict1.copy()
dictMerged2.update( dict2 )

 

或者

dictMerged2 = dict( dict1 )
dictMerged2.update( dict2 )

 


方法 2 比方法 1 速度快很多, 可以用 IPython 测试效率。

来自:https://blog.csdn.net/u010649766/article/details/78661714

以上是关于python中两个字典的合并的主要内容,如果未能解决你的问题,请参考以下文章

python合并两个字典的内容,使用update方法

python 在Python的中合并两个或以上字典

Python 中两个字典(dict)合并

python字典合并

Python合并两个字典

Python合并两个字典