I have a question about idioms and readability, and there seems to be a clash of Python philosophies for this particular case:
I want to build dictionary A from dictionary B. If a specific key does not exist in B, then do nothing and continue on.
Which way is better?
try:
A["blah"] = B["blah"]
except KeyError:
pass
or
if "blah" in B:
A["blah"] = B["blah"]
"Do and ask for forgiveness" vs. "simplicity and explicitness".
Which is better and why?
if "blah" in B.keys(), orif B.has_key("blah"). – girasquid Dec 22 '10 at 18:50A.update(B)not work for you? – SilentGhost Dec 22 '10 at 18:51has_keyhas been deprecated in favor ofinand checkingB.keys()changes an O(1) operation into an O(n) one. – kindall Dec 22 '10 at 18:52.has_keyis deprecated andkeyscreates unneeded list in py2k, and is redundant in py3k – SilentGhost Dec 22 '10 at 18:52A = dict((k, v) for (k, v) in B if we_want_to_include(k)). – Karl Knechtel Dec 22 '10 at 19:22