I have 8 dictionaries with a key, followed by a value. It looks like this (simplified):
dictionary1 = {1: '5', 2: '8', 3: '4'}
dictionary2 = {1: '3', 2: '5', 3: '7'}
dictionary3 = {1: '1', 2: '2', 3: '3'}
I want to merge these into a dictionary that looks like this:
dictotal = {1: '5', '3', '1', 2: '8', '5', '2', 3: '4', '7', '3'}
How can I do this?