I have a dictionary with many instances of this basic structure: dict = {'source' : 'something', 'topic' : 'something else', 'table' : 'another thing', 'data' : dftmp } I want to iterate through the instances, check if the topic value matches a string, and return the data value. How would one do this? Continue reading...