I am iterating through a database and want to add the variable value of key "number" to a list x, only if this key exists. There are some documents where there is no key "number".
Inside mongo I would use the $exist, but I don't know how to do it in python. I tried this but it doesn't work...
for i in database:
try:
x.append(i["number"])
except NameError:
break
This doesn't work, and I am sure there is a more elegant way...

i.has_key('number')check should do it – avasal Nov 22 '12 at 11:01'key' in objis the preferred method, and.has_keyhas gone the way of the dodo in 3.x – Jon Clements Nov 22 '12 at 11:07