Skip to main content

Python - How To Merge Two Dictionaries

 PythonHow to merge two dictionaries

As we know If you are working as Python developer, data analytics or data scientists for any organisation then it is very important for you to know how to merge two dictionaries.

There are various ways in which Dictionaries can be merged by the use of various functions and constructors in Python. In this article, we will discuss a few ways of merging dictionaries. 

Using the method update ()

By using the method update() in Python, one list can be merged into another. But in this, the second list is merged into the first list and no new list is created. It returns None

 

Example

# Python code to merge dict using update() method def Merge(dict1, dict2):     return(dict2.update(dict1))      
# Driver code dict1 = {'a': 20, 'b': 8} dict2 = {'d': 6, 'c': 4}
 
# This return None print(Merge(dict1, dict2))
 
# changes made in dict2 print(dict2)



Output
None
 {'c': 4, 'a': 20, 'b': 8, 'd': 6}

Using ** in Python


This is generally considered a trick in Python where a single expression is used to merge two dictionaries and stored in a third dictionary. The single expression is **. This does not affect the other two dictionaries. ** implies that an argument is a dictionary. Using ** [double star] is a shortcut that allows you to pass multiple arguments to a function directly using a dictionary. 
Using this we first pass all the elements of the first dictionary into the third one and then pass the second dictionary into the third. This will replace the duplicate keys of the first dictionary.

Example 

# Python code to merge dict using a single
# expression def Merge(dict1, dict2):     res = {**dict1, **dict2}i     return res      
# Driver code dict1 = {'a': 20, 'b': 8} dict2 = {'d': 6, 'c': 4} dict3 = Merge(dict1, dict2) print(dict3)

Output
{'b': 8, 'a': 20, 'c': 4, 'd': 6}



Comments

Popular posts from this blog

Introduction of python

What is Python? Python is a popular programming language. This language was created by Guido van Rossum  in 1991 and further developed by the Python Software Foundation. As you know it is work quickly and integrate systems more efficiently.   It is manly used for: 1.                   web development (server-side),  2.                   software development, 3.                   mathematics and data analytics 4.                   system scripting etc. What can Python do? It can be used on a server to create web applications. It can also used alongside software to create workflows and connect to dat...

Django in Python

What is Django? Django is a free and open source web application framework written in Python that encourages rapid development and clean pragmatic design. As you know  A framework is nothing more than a collection of modules that  make development easier. They are grouped together, and allow you to create applications or websites from an existing source, instead of from scratch. Some well known sites that use Django include PBS, Instagram, Disqus, Washington Times, Bitbucket and Mozilla. Django offers a big collection of modules which you can use in your own projects. Primarily, frameworks exist to save developers a lot of wasted time and headaches and Django is no different.