this post was submitted on 17 Aug 2024
712 points (95.3% liked)

Programmer Humor

32042 readers
1387 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
[โ€“] [email protected] 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).

[โ€“] [email protected] -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)