I mean by useless is it’s so slow you can’t make games or even big projects for GUI, only you can do is AI/ML, Data Science, and basic stuff. I think Rust is better because of its speed and language capabilities?
Betteridge’s law of headlines:
Any headline that ends in a question mark can be answered by the word no
Demonstrably false, there are many cases where the answer is yes… it’s just that there’s also a lot of no.
Obviously. It is, however, a good heuristic. The headlines that can be answered in the affirmative are very much in the minority
The headlines that can be answered in the affirmative are very much in the minority
Not according to several different studies: https://en.wikipedia.org/wiki/Betteridge's_law_of_headlines#Studies
OP must be cold because he seems to really like flame wars
…Have you tried ML projects in Rust?
I mean, ML/data science devs use Python because the bajillion underlying libraries and implementations are already there.
It’s not perfect. But that’s fine, because it’s a pretty good prototyping language for researchers, and anything performance sensitive is done in libraries anyway.
If you want a real world example, see: Mistral.rs vs vllm.
I don’t like python personally, but saying its useless is quite far detached from reality considering all the python projects.
You can argue its slow and i would agree, but if people make alot of stuff with it its clearly not useless.
A programing language cannot be better than another one because its personal opinion.
if people make alot of stuff with it its clearly not useless
You’re correct, but we cannot avoid that it’s limites to basic stuff, you can’t make a facebook with pytho with good speed.
Originally Facebook was made with php…
Unfortunately, I don’t think that this is a useful argument because from what I understand, php is significantly faster than python.
Likely depends on what exactly you are doing
Sure, there will always be exceptions for certain use-cases, but my understanding is that PHP is faster that python in most cases. By the way, I didn’t say that to put python down, but just to point out that php wasn’t a good argument to defend python. Python itself is a good argument to defend python. See my parallel reply to yours, where I point out that Instagram and Threads both use python for their back-ends.
you can’t make a facebook with pytho with good speed
You may want to check your assumptions. Facebook’s back-end was developed with PHP, probably because it was the most popular web back-end language when it was originally developed. However, two later Meta products, Instagram and Threads, used Python for their back-end. Source: https://engineering.fb.com/2023/09/07/culture/threads-inside-story-metas-newest-social-app/
99.9999% of projects will never need to reach the scale of Facebook
Even if they do, Python still seems to do the job. Instagram and Threads use python for their back-ends: https://engineering.fb.com/2023/09/07/culture/threads-inside-story-metas-newest-social-app/
Pyrefly is a python type checker and it’s made by meta. I doubt they’d be doing that if they weren’t using python.
I mean I’m posting from PyLova (Python-based and it’s been mostly good. I was truly skeptical of the viability of a Python-based Fediverse platform when PieFed first dropped, and I’m still skeptical of Python over Rust from a purely technical perspective, but it’s been smooth sailing on this instance so far 🤷
you can’t make games or even big projects for GUI
Oh no? Someone should probably tell the people who made Eve Online.
they don’t run the standard Python. because its unusably slow. Your examples proves the counterpoint
No. They chose a nonstandard Python because they wanted to use coroutines before standard Python had coroutines.
Your No True Scotsman argument is not only fallacious, but just plain incorrect.
And plenty more games are mainly or partially using python like Civ 4, DDLC, World of Tanks or Guild Wars
No. Next question.
(insert spongebob meme showing the fat dude a bunch of big python projects upon which many things run in this world)
Python obviously isn’t useless, but it is both slow, and if you’re making serious software, the worst developer experience I’ve ever had to deal with. It makes the easy things easy and the hard things hard, so to speak
Python is the 2nd best language for any task.
You can learn niche langs for specific cases. Go for it.
Me, a python dev, will find an API to your subroutines.
PS. import antigravity
Yes. I dunno about Rust, but Julia is a very similar to Python but much better.
But does anyone use Julia?
It’s very popular in scientific computing
i think a key consideration is wether there are alot of developer for the lang.
a foss project will grow faster if its written in rust,js,cpp,pythonNo games? Mount and Blade was written in python
Was it though? Or is it like other things “written in Python” where all of the heavy work is handled by C libraries?
I hate this argument on principal, if I write a game with Pygame, it’s written in Python not C.
Balatro is written in Lua not C just because Love uses SDL.
This is like saying Python, CPP, JS, PHP, LUA, Perl, Dart, C# and Java are just written in C.
This is like saying Rust isn’t a real language because it relies on LLVM which is written with C/CPP.
If I split the lua code in balatro from the SDL library, I don’t have a game anymore.
Why do you feel a need to be able to claim that something is “written in Lua” or “Python” when it’s using native libraries? Many games are using a mix of languages these days. There’s no shame in it and I didn’t imply there is.
People get very confused over this thinking that “Python is very fast at number crunching” because of things like numpy which is written partly in C to achieve that performance.
This is like saying Rust isn’t a real language because it relies on LLVM which is written with C/CPP.
That’s entirely different - I’m not talking about the interpreter or compiler. Just the runtime code.
Python itself is just a program written in c, every time you do
len(string)you are calling out of the python interpreter into compiled c code. The distinction between python wrapped c library and a python lib can be fuzzy.That’s not what I’m talking about. Things like “numpy” which are actually written with a fair amount of C for performance. Or pandas which uses Cython to trans-pile Python to C to compile.
It’s not “pure python”.






