this post was submitted on 24 May 2025
196 points (88.6% liked)
Asklemmy
49608 readers
184 users here now
A loosely moderated place to ask open-ended questions
Search asklemmy ๐
If your post meets the following criteria, it's welcome here!
- Open-ended question
- Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Python sucks.
Not only is it extremely inefficient, it is also a pain in the ass to work with if you have to use APIs that heavily rely on dynamic type wrapping and don't provide stubs. Static analysis via Pylance is not possible then and you're basically poking around in the dark, increasing the difficulty enourmously to get to know such an API. Even worse if there isn't even a halfway decent documentation.
thank you.
I really don't get how so many people find Python "ergonomic." kwargs and their consequences have been a disaster for the human race. they break type hinting and intellisense, and there's all kinds of proxy class shenanigans that all the libraries use. matplotlib is a horrible experience because there's just a kitchen sink of options, and it's hard to dynamically update plots. if there were a TypeScript-like dialect of Python I wouldn't have problems, but Python's type hinting is absolutely wretched.
I really want Julia to succeed.