this post was submitted on 24 Sep 2023
513 points (93.0% liked)
Programmer Humor
32361 readers
264 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Doesn't Python 3 have types? I've seen a few well typed codebases and it really made the code much easier to understand. Or is it just that it's not checking them strongly enough?
The type annotations are just fancy comments. They do not do anything at runtime. If you have a function that takes an int someone can still pass in a list or anything else.
The main advantage of typing for me is static linting.
But will it run? I'm used to typescript where it's not checked at runtime but you can't "build" unsafe types I'd assume it's the same here
no they really are just fancy comments. You can do runtime reflection on them if you wanna make something fancy like a plugin system but that's about it