Depending on what you want to do if the key doesn't exist, you might want to use the dictionary method get() :
value = some_dict.get(key,default) sets value to some_dict[key] if the key exists, and to default otherwise Regards, Pierre -- http://mail.python.org/mailman/listinfo/python-list