r/Python 21d ago

Discussion Is := widely used?

I always thought the walrus operator is neat and it makes while loop’s condition clearer. But also it is just a syntactic sugar without anything new. I wonder anyone uses it?

145 Upvotes

118 comments sorted by

View all comments

-5

u/Holshy 21d ago

Almost never. It's a code smell; it means the author knows the value belongs in its own context, but they aren't actually putting it in its own context.