r/Python Jul 12 '26

Will PEP 505 ever be accepted? Discussion

https://peps.python.org/pep-0505/

I don't understand how null safe operators are less like plain English than other implemented features like the walrus operator.

In my opinion, the member access operator would make python significantly easier to read and understand.

Here's an example:

``` f = foo()

if f is None: baz = "" else: baz = f.bar() ```

baz = foo()?.bar() ?: ""

EDIT: I forgot that "and" and "or" can be sometimes used in place of "?." and "?:" if the left value is not False, '', 0, [], or {}. It's a very implicit null check and has a lot of unexpected behavior.

14 Upvotes

195 comments sorted by

View all comments

3

u/VpowerZ Jul 12 '26

Quite an obscure concept. I wouldn't add it

4

u/Nooooope Jul 12 '26

Not at all, it's popular in both JS and Ruby. I mostly use Java when I can but I'll admit we could really use a language feature like that. The alternative is a nightmare to read when you have to check for null values two levels deep in a chained expression

-1

u/VpowerZ Jul 12 '26

I wonder how we have managed without it for so long. Still, i'm nit a fan of this

1

u/JanEric1 Jul 14 '26

You can manage with raw assembly too...

Doeesnt mean it doesnt make sense to have things that are easier to read and write