filmov
tv
How to merge dictionaries in Python

Показать описание
Subscribe for more
#howto #python #pythonprogramming #pythontutorial #dictionary #merge #key #value #loop #tutorial #1minutevideo #60secondsvideo #fasttutorial #beginners #coding #developer
Full Code Snippet
Example 1:
--------------------------
x = {'a' : 1, 'b' : 2}
y = {'b' : 3, 'c' : 4}
z = {**x, **y}
print(z)
#howto #python #pythonprogramming #pythontutorial #dictionary #merge #key #value #loop #tutorial #1minutevideo #60secondsvideo #fasttutorial #beginners #coding #developer
Full Code Snippet
Example 1:
--------------------------
x = {'a' : 1, 'b' : 2}
y = {'b' : 3, 'c' : 4}
z = {**x, **y}
print(z)