Earlier quoted context omitted.
No-one goes out of their way to choose a slower language. People who choose to write something in Python are getting value out of it, or at least believe they are; if writing the program in Go will be more costly (in development time, defect rate, library availability or something else) than writing it in Python then writing it in Go is premature optimization, and if writing it in Go wouldn't be more costly than writ…
> No-one goes out of their way to choose a slower language. > (...) > why were you thinking of writing it in Python at all? They simply have no awareness of how slow it is, or how important performance is. > IME thinking about language performance at all is premature optimization Are you serious? Python code is about 10 times slower than equivalent code in Go.
And 98% of the time it doesn't matter. For most business problems that you'd want to solve with a computer, for modern hardware, Python's performance is more than adequate. It's really not worth worrying about.