Let us Assume, I have a key value pair in python, such as the following.
a = {'44': [0, 0, 1, 0, 1], '43': [0, 0, 1, 0, 0]}
now I want to combine these values with:
b = {'44': ['test1'], '43': ['test2']}
How can I do the output below in python?
c = {'44': [0, 0, 1, 0, 1, 'test1], '43': [0, 0, 1, 0, 0,'test2']}