this post was submitted on 18 Aug 2024
1 points (100.0% liked)

Python

1974 readers
1 users here now

A community for talking about the Python programming language.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 6 months ago (1 children)

"Hardware cycles are cheap. Wetware cycles are expensive."

  • Paraphrased from something I once heard Jacob Kaplan-Moss say but don't remember his exact wording at PyCon many moons ago.
[–] [email protected] 0 points 6 months ago (1 children)

Then why do Python people insist on having the programmer do so much stuff instead of letting a compiler do it?

[–] [email protected] 0 points 6 months ago (1 children)
[–] [email protected] 0 points 6 months ago (1 children)

Verifying that your different pieces of code actually work together. With a static type system and similar compiler features you can lighten the mental load a lot compared to languages like Python where you need to keep it all in your head.

[–] [email protected] 0 points 5 months ago

Python has (optional) types now.