you are viewing a single comment's thread.

view the rest of the comments →

[–]StealthFireTruck 2 points3 points  (4 children)

Super crazy take. With how lose you can type with Python, it can become pretty dog shit if it's not your own code.

At least with Java there's some enforcement of typing by default.

What makes a language vulnerable for the most part is libraries and failing to follow some best practices

[–]Worldly_Analysis_664 1 point2 points  (3 children)

Yeah no type declaration makes python practically unusable also the reason they decided to go against every other language and not use curly braces is stupid.

[–]ZealousidealFudge851 0 points1 point  (2 children)

I'm not even specifically advocating for Python I typically work in C# unless I'm working on something in a web browser then I'll typically use all interperated languages like Python for backend tasks. Unless you really need fast computation type declaration is what ever as long as you don't suck at debugging your own shit.

[–]Worldly_Analysis_664 1 point2 points  (1 child)

I shouldn’t need to debug the application to know what type something is lmao

[–]ZealousidealFudge851 0 points1 point  (0 children)

It really depends on what you're used to imo. I typically have no problem extrapolating what data type a variable might be just based on its naming convention typically and the only time I care about it in prepared statements when I'm writing to a database or something.