Y
Hacker News
new
|
ask
|
show
|
jobs
by
hiichbindermax
415 days 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.
1 comments
TACD
415 days ago
Similarly 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-...
)
link
maleldil
415 days ago
You 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.
link