Possible Duplicate:
What's the best way to search for a Python dictionary value in a list of dictionaries?
I have a list of dictionaries in the form
my_dict_list = []
my_dict_list.append({'text':'first value', 'value':'number 1'})
my_dict_list.append({'text':'second value', 'value':'number 2'})
my_dict_list.append({'text':'third value', 'value':'number 3'})
I also have another list in the form:
results = ['number 1', 'number 4']
how can I loop through the list of results checking if the value is in dict, e.g.
for r in results:
if r in my_dict_list:
print "ok"
value? – Lasse V. Karlsen Apr 14 '11 at 14:56dictor use built-ins as variable names. It just makes a mess of things. . . – JoshAdel Apr 14 '11 at 14:56dictis now an empty list instead of the python built-in. It slows my ability to help you, which makes me not want to (and I do) – JoshAdel Apr 14 '11 at 15:04