this post was submitted on 15 May 2025
451 points (98.5% liked)

Programmer Humor

23301 readers
1860 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

(Please don't lob rocks at me. I love Python.)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 1 day ago (8 children)

Is Python not considered to be any good?

[–] [email protected] 18 points 1 day ago* (last edited 1 day ago) (1 children)

...It's okay. I've programmed in far far worse languages. ...It's got its advantages. It's got it's problems. πŸ€·πŸ»β€β™€οΈ

Edit: If you need a serious answer: Much like BASIC, it's a language often used in teaching programming. In that sense, I guess it's much better than BASIC. You can, like, actually use it on real world applications. If you're using BASIC for real world applications in this day and age something has gone really wrong.

[–] [email protected] -1 points 1 day ago

If you're using BASIC for real world applications in this day and age something has gone really wrong.

Visual Basic is essentially the same as C# if they’re both working with the .NET framework, if I recall correctly.

But yes.

[–] [email protected] 3 points 1 day ago

As far as I know many Python libraries which need performance are mainly written in C++

[–] [email protected] 6 points 1 day ago (2 children)

Python is phenomenal for prototyping IMO.

Once you need performance, its best to use another language (even partially).

But quickly banging out a concept, to me, is the big win for python.

[–] [email protected] 6 points 1 day ago

But quickly banging out a concept, to me, is the big win for python.

For me the best language for quickly banging out a concept has always been the one I'm most familiar with at the moment.

[–] [email protected] 6 points 1 day ago

Once you need performance

If you need more performance. Many things just don't.

[–] [email protected] 9 points 1 day ago* (last edited 1 day ago)

Python is great, but it's so forgiving that it's easy to write garbage code if you're not very proficient and don't use the right tools with it.

The only objectively bad (major) thing against it is speed. Not that it matters much for most applications though, especially considering that most number crunching tasks will use libraries that have critical path written in a systems language:

numpy, pandas, polars, scikit-learn, pytorch, tf, spacy; all of them use another language to do the cpu intensive tasks, so it really doesn't matter much that you're using python at the surface.

[–] [email protected] 6 points 1 day ago* (last edited 1 day ago)

Python is the tradeoff between ease of development and performance. If you do things the "normal" way (aka no cython) your programs will oftentimes severely underperform when compared with something written in a relatively lower-level language. Even Java outperforms it.

But, you can shit out a program in no time. Or so I've been told. Python is pretty far from the things I'm interested in programming so I haven't touched it much.

[–] [email protected] 7 points 1 day ago

It's certainly not very fast

[–] [email protected] 6 points 1 day ago (2 children)

It's okay, but it's a bit slow and dynamic typing in general isn't that great IMO.

[–] [email protected] 3 points 1 day ago

Dynamic typing is shit. But type annotation plus CI checkers can give you the same benefits in most cases.

[–] [email protected] -1 points 1 day ago (1 children)

It doesn't have dynamic typing FFS, variable are typed. You mean declarations.

You can't have statically typed objects, because they are of indeterminate length.

[–] [email protected] 4 points 1 day ago

it is a dynamically typed language, but it's not a weakly typed language.

[–] [email protected] 5 points 1 day ago

good is subjective to the opinions of the group.

objectively, Python is a smoldering pile of trash waiting to completely ignite. it does have one thing going for it though.

it's not JavaScript.