7 ms·
Nitpick about 9.3 Short Circuit Evaluation: both things evaluate differently if you have empty strings. The if-else clause treats empty strings as valid while t
by hiichbindermax 1y ago
Nitpick about 9.3 Short Circuit Evaluation: both things evaluate differently if you have empty strings. The if-else clause treats empty strings as valid while the or operator will treat them equivalent with None.
- TACD 1y agoSimilarly with 9.2, assignment using a walrus operator will also fail if the value is 0 (or anything falsy: https://docs.python.org/3/library/stdtypes.html#truth-value-testing https://docs.python.org/3/library/stdtypes.html#truth-value-...)
- maleldil 1y agoYou can use `if (response := get_user_input()) is not None` if that's important. IME, empty strings and None would be treated the same way.