Yes, as long as you just type annotation and checker-clean code.
Asyncio programming is a delight, context-based constructs can make sophisticated code safe, robust, and clear. Anything mildly popular you want to interface with probably had a library… There are major advantages to swimming in the mainstream.
Yes it may have grubby and suboptimal corners, but the real world making things happen problems are easy to avoid usually.
waz@lemmy.world 1 year ago
Python is my go-to in a lot of situations. Initially I really hated the “whitespace has meaning” feature of it. Now after more than a decade of using it, I’ve gotten used to it, but I still really dislike the the whitespace scoping.
Everything else is great, I just miss my brackets.
onlinepersona@programming.dev 1 year ago
IMO whitespace is one of its biggest selling points. It makes code so much easier to read that keeping track of how deep you’re in and which bracket to close. Makes refactoring easy too: select stuff with a certain indentation, cut it out and replace it with a single call or something. No looking for the brackets.