• SatyrSack@feddit.org
    link
    fedilink
    English
    arrow-up
    30
    ·
    17 hours ago

    Python is by far the fastest to write, cleanest, more maintainable programming language I know

    Maintainable? I have not ever had to work with any large Python projects, but from what I have heard, maintenance is a large pain point.

    • FooBarrington@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      4 minutes ago

      Python is by far one of the worst languages I’ve ever seen in relation to maintainability, second only to Javascript (due to missing types, which are fixed by Typescript).

      Seriously, it’s rare for a Python project with more than 1,000 lines to not turn into an absolute mess thanks to the layers upon layers of meta programming, weird edge cases and so on. There are whole bad patterns I’ve never seen beyond Python codebases.

      Things are improving slowly thanks to type hints and so on, but they are still far from where they need to be. Python is used in even more dynamic ways than JS, so the type system needs to be more expressible than TS. You can’t even define a function that appends two tuples with proper type hints!

    • jjjalljs@ttrpg.network
      link
      fedilink
      arrow-up
      3
      ·
      8 hours ago

      My work uses python and it hasn’t been bad for new code that has tests and types. Old code we inherited from contractors and “yolo startup” types is less good, but we’ve generally be improving that as we touch it.

    • 8hob@programming.dev
      link
      fedilink
      English
      arrow-up
      8
      arrow-down
      2
      ·
      12 hours ago

      There’s one key qualifier in this sentence: I know. One’s skill set matters, I guess…

    • aluminium@lemmy.world
      link
      fedilink
      arrow-up
      9
      ·
      16 hours ago

      Also fastest to write? I’d say JS or Ruby are just as fast or barley slower.

      What most people mean is that Python has great Libraries which do the thing you want without much fuss. But thats more on the libraries than on the language.

      • Pup Biru@aussie.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 hours ago

        i’m proficient in all 3, and i can say with great certainty that generally python is far faster to write

        certainly when you’re talking about JS rather than TS, and achiving a usable outcome rather than bashing together bug-ridden trash

      • SatyrSack@feddit.org
        link
        fedilink
        English
        arrow-up
        7
        ·
        15 hours ago

        I do not know Ruby, but Python has a lot of syntactic sugar that, if one becomes used to and proficient with it, makes writing much faster than other languages I know (including JavaScript).

    • FizzyOrange@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      15 hours ago

      It’s not too bad if you strictly enforce Pyright, Pylint and Black.

      But I have yet to work with Python code other than my own that does that. So in practice you are right.

    • lime!@feddit.nu
      link
      fedilink
      English
      arrow-up
      3
      ·
      15 hours ago

      i had the misfortune once of having to try to understand a >400kLoC python codebase in a critical position and let me tell you that maintainability is a Problem. the system was older than most of the best practices of today and had a structure i can only describe as “a duolith of sqlalchemy soup”.

    • SatyrSack@feddit.org
      link
      fedilink
      English
      arrow-up
      10
      ·
      17 hours ago

      It seems “vanilla” Python is slow, but a JIT implementation like PyPy can speed things up significantly. The major downside seems to be that PyPy does not support Python code that relies on some CPython libraries.

  • Andrew@piefed.social
    link
    fedilink
    English
    arrow-up
    8
    ·
    19 hours ago

    Oh man, it’s only from reading this that I’ve realised that ‘pypy’ isn’t the same as ‘pypi’

    • Captain Aggravated@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      3
      ·
      11 hours ago

      Python is a great language for folks who occasionally have to do a little bit of programming, but if you have to go into any depth with it you hit shit like that.