5

The only thing that’s keeping python alive are its god tier libraries. Take those away and it’s a piece of garbage.

Comments
  • 2
    import snidecomment

    snidecomment.fuckyou() # just kidding, ;-)

    I dunno. I like Python. I had a lot of fun extending a game engine with it a few years back. The modules are freaking amazing. But I also get some of the hate too.
  • 2
    @Demolishun python is the language u reach for when you wanna get something working lol
  • 3
    @chonky-quiche i love testing things out fast. Then see if worth to try in C++.
  • 5
    Python is pretty much the best you can get when you need to parse data.

    Try writing an object oriented REST API consumer that exports to XLSX / CSV....

    ... Then try the same in Python.

    Python will be usually the fastest, as long as you know things like dataclasses / Dacite / Python stdlibs.

    I would be very unhappy without Python.

    Cause generating / aggregating data is a real pain in the arse boring shit job.
  • 3
    @IntrusionCM exactlyyyy the libs are what’s nice
  • 3
    @Demolishun I had to do tensorflow project back in the day and I tried to do it in C++ first and later I was like nah fuck that and switched to py
  • 1
    Python is perfect I realized writing my interpreter. What's not to like?
Add Comment