Note to Self Python Merge Dicts
Note to self
#
x = {'a':1, 'b': 2}
y = {'b':10, 'c': 11}
z = dict(x.items() + y.items())
print z
{'a': 1, 'c': 11, 'b': 10}
x = {'a':1, 'b': 2}
y = {'b':10, 'c': 11}
z = dict(x.items() + y.items())
print z
{'a': 1, 'c': 11, 'b': 10}