I am trying to find corresponding keys in two different dictionaries. Each has about 600k entries.
Say for example:
myRDP = { \'Actinobacter\':
Use the get method instead:
get
for key in myRDP: value = myNames.get(key) if value != None: print key, "=", value