At the moment I have two dictionaries
dictionary1 = {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'}
dictionary2 = {'value1': 'AAA', 'value3': 'CCC'}
I want to replace the values of dictionary1
with the values from dictionary2
which with the example above would produce the following output
{'key1': 'AAA', 'key2': 'value2', 'key3': 'CCC'}
From other examples I have read I think that I should begin my code as follows:
for key, value in dictionary1.iteritems():
if value ==
Now I am unsure as to the best method to cycle through the other dictionary to find if the value from dictionary1 matches a key from dictionary2.