I have two collection.Counter()s, both of which of the same keys, so they look something like this:
01: 3
02: 2
03: 4
01: 8
02: 10
03: 13
I want the final result to look a bit more like this:
01: [3, 8]
02: [2, 10]
03: [4, 13]
How would I go about merging them?