I have the following Python code I am trying to execute but the interpreter is returning prematurely. I believe it is because I am trying to combine two dictionaries as if they were lists:
both = {}
one = {"A" : 0}
two = {"B" : 0}
both = one + two // Returns prematurely here
How can I combine two dictionaries into one?