>>105744701Python isn't an easier programming language though. All the shit like venvs, versioning hell and packaging make the language hard to use. Python is hard once you get beyond printing shit to the screen. For example, I recently was building a little sim in Raylib + Python and of course when iterating you're going to get bugs. In every other language (I've used) the program just crashes, fine, it's what you expect, the os just cleans that shit up. In Python oh no, the fucking interpreter hangs instead, even when the Window closes and you kill the app from the cmdline it's still running in the background. This means Python is now silently spinning its wheels just consuming resources. You have to be constantly checking the system monitor, manually killing the python interpreter as well or Python will eventually crash your system. It's utter trash and there is no reason to use it unless you have to use a library like numpy or pandas.