Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

How to merge dictionaries in python

a = {"Kelly": 23, "Derick": 14, "John": 7}
b= {'Ravi': 45, 'Mpho': 67}

             
# combine dictionaries using the merge(|) operator
dict2=a | b
print(dict2)

# Output:
# {'Kelly': 23, 'Derick': 14, 'John': 7, 'Ravi': 45, 'Mpho': 67}

# combine dictionaries using the merge operator
dict3 = {**a, **b}
print(dict3)

# Output:
{'Kelly': 23, 'Derick': 14, 'John': 7, 'Ravi': 45, 'Mpho': 67}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #merge #dictionaries #python
ADD COMMENT
Topic
Name
5+9 =