None of that is “Python”. You want to learn a language and automatically know everything there is to know using Math?
A hammer is beginner friendly, but learning to use a hammer doesn’t necessarily mean you’re ready to build a house with it.
The sea should be marked as C considering that’s what you’ll discover when you get deep into it.
https://en.m.wikipedia.org/wiki/PyPy
Their greatest mistake was not naming it Ouroboros.
The reason C becomes relevant to Python users isn’t typically because the interpreter is written in C, but because so many important libraries (especially numpy) are implemented in C.
Extension modules are implemented in C because the interpreter is written in C. If it were written in another language, folks would write extension modules for that language instead. Also, it would be less relevant if people used portable C bindings like cffi, which are portable to PyPy and other interpreters… but they don’t.
The mistake was choosing a language, and afterwards searching for a use to the language you just learned.
Among all of them at least python is the choice generically people learn when they don’t want to learn programming, just want to program stuff as a helper tool to manage data. For those, python is just fine and the learning material around is tailored to for that.
That’s how you trick people into programming. You then see people making scripts that take days to run, but it’s fine, they’re only going to use it twice and are busy enough to be able to wait
Dynamic typing, special and unique syntax for every language feature, interpreter intrinsics
I think the problems there are exacerbated a lot by over-eager type coercion and other crappy design decisions inherited from almost 30 years ago
Yep lua and lisp/scheme are also unityped and not even close to as broken. All are remarkably similar languages, theory-wise.
…also something something Guido not getting tail call elimination and people sending him copies of the wizard book. It’s been a while.
(And, yes, lua does proper tail calls).
Operator overloads are excellent for readable code when used well - I object to their inclusion on this list.