• SatyrSack@feddit.org
    link
    fedilink
    English
    arrow-up
    23
    ·
    9 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.

    • jjjalljs@ttrpg.network
      link
      fedilink
      arrow-up
      2
      ·
      36 minutes 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
      6
      arrow-down
      2
      ·
      4 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
      ·
      8 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.

      • SatyrSack@feddit.org
        link
        fedilink
        English
        arrow-up
        5
        ·
        7 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).

    • lime!
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 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”.

    • FizzyOrange@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      8 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.