Answers for "merge dict python 2"

4

python join dict

dict.update([other])
Posted by: Guest on April-02-2020
1

how to merge two dictionaries in python

>>> x = {'a': 1, 'b': 2}
>>> y = {'b': 10, 'c': 11}
>>> z = {**x, **y} #In Python 3.5 or greater only
>>> print(z)
{'a': 1, 'b': 10, 'c': 11}
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language