this post was submitted on 16 Jul 2023
778 points (99.7% liked)

Programmer Humor

32143 readers
103 users here now

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

Rules:

founded 5 years ago
MODERATORS
 

No offence

you are viewing a single comment's thread
view the rest of the comments
[โ€“] jflorez@sh.itjust.works 6 points 1 year ago (1 children)

Before 3.9 the lack of type hints made it a nightmare for large projects. Strong typing is, among other benefits, a way of self documentation and helps IDEs with auto-complete. If I use Python I always use type hints and if I have to use JS sigo with Typescript instead

[โ€“] pazukaza@lemmy.ml 3 points 1 year ago

Python without type hints is torture. I always need to have the fucking docs opened for anything, and if the docs are bad you're screwed, get ready to read the source code. Like fucking hell man, just let me autocomplete this shit...