Lets say I have two dictionaries with multiple values per key:
Dict1 = { key1 : [value1,value2] }
Dict2 = { key1 : [value3,value4], key2 : [value5,value6]}
I want to merge them into one dictionary like this:
mergedDict = { key 1 : [value1,value2,value3,value4], key 2 : [0,0,value5,value6] }