this post was submitted on 17 Aug 2024
710 points (95.2% liked)

Programmer Humor

32051 readers
1532 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Kache@lemm.ee 10 points 1 month ago (1 children)

I find it's possible to operate Python as a statically typed language if you wanted, though it takes some setup with external tooling. It wasn't hard, but had to set up pyright, editor integration, configuration to type check strictly and along with tests, and CI.

I even find the type system to be far more powerful than how I remembered Java's to be (though I'm not familiar with the newest Java versions).

[โ€“] tdawg@lemmy.world -1 points 1 month ago

Ime anyone who is experienced enough knows how to avoid these Types of issues anyway (through tooling and good convention etc)