Cover Image (C) Tai Kedzierski
How many times have you written/seen code like this:
data = get_data()
print(data.strip())
Enter fullscre...
For further actions, you may consider blocking this person and/or reporting abuse
My penny?
Mypy has caught many forgotten
None-checks in my code. The Pythonic way seems to be to not bother at runtime, but type-hint, and check statically:This will fail to type check:
Note: it does seem that mypy is not fool proof, though.
Another, run-time checked, approach is to implement the Maybe monad. Some articles exist, and some libraries do. E.g. skeptric.com/python-maybe-monad/.
Static analysis is one of the ways to try and ferret things out ; it probably does rely on it identifying correctly that a function can in fact return None, which I presume is not fully trivial...
The technique I explored is more "forceful"...
It's an interesting Mybe-monad article you link ; it also links through to a Wikipedia section which... essentially describes the Rust
Optionitself....en.wikipedia.org/wiki/Monad_(funct...
I like the or_default()
But you could do:
The other option I think would be more pythonic, by just raising an exception instead of returning
None.This whole Result handling in rust comes from lack of exceptions, python do have them, so why not use them?
Indeed, this is completely unpythonic, but for a reason:
In most languages (python being one of a plethora), it is an extremely common mistake to just assume we have a value, until it blows up at runtime with a rogue
None.Hence the "billion dollar mistake," where so many developers forget to handle the
Nonecase.By making it a type, and gating it inside an
Option, the idea is to enforce "you cannot do anything with this unless you fully acknowledge that you could have nullity and you have explicitly chosen how to take action"So instead of null-ness being maybe-or-maybe-not a possibility:
the function explicitly says "hey, handle the case, or else!"
So really, yes, there are idiomatic pythonic wasy to handle None. Adding the type enforces "You cannot mistakenly fail to handle it"
Yeah, I agree I saw many cases where None was not handled properly. But if we require a specific thing to be returned only from a function, then we as well can ask for handling of None or writing a function in a way that None will never be returned.
On the other hand what floats your boat, if it works it's good!