str='test'
example={'test':'value',}
return str in example and example[str] or None
why the seemingly redundant extra test for key str in example?
why the seemingly redundant extra test for key
| |||
|
feedback
|
|
In this specific example, the check is to first make sure that 'test' is actually a valid key in the example dict, otherwise you would get a KeyError exception. Then the logic proceeds to check the key and either return it, or a None if the value of example[str] evals to False It would be a lot easier if this example simply did:
Update Even simpler, since the extra param to get() is not needed:
Update 2: Breaking down the truth tests and boolean operations from the OP (based on comments)
| |||||||||||||||
feedback
|
|
For starters, the behaviour is different for the case where you're looking up a non-existent key (the extra test would prevent a However, it goes further than that because
So it is not quite redundant. | ||||
feedback
|
|
Since Python evaluates Booleans lazily, you can safely omit parentheses in simple tests. This might make it easier to read:
In plain English: "Make sure the dictionary | |||
|
feedback
|
|
Graceful failure. If the key doesn't exist, the lookup 'example[str]' will fail at runtime. You'll get a fault, terminate your app and get a traceback. By checking for the key first you get the None value back instead and your application will go on on its merry way. Another, more general approach would be to catch the exception and return None as a result of that.
| |||||||||
feedback
|
|
If the key doesn't exist it will get
| |||
|
feedback
|
|
| ||||
|
feedback
|
return example[str] if str in example else None– Jochen Ritzel Jan 31 at 1:36orused to return one of two values, the intent isn't really to prevent 0, '', [], etc from being returned, it's just a 'clever' one-liner for defaulting, because people are afraid their keyboards will wear out if they have to type a wholeifblock/expression. Personally I think it's a bit of an anti-pattern; in this case I would guess that the fact that you can't distinguish a "falsey" value stored under a key from a key that's not stored is more likely to be an unconsidered corner case (i.e. a bug), rather than desired behaviour. – Ben Jan 31 at 5:06