• SatyrSack@feddit.org
    link
    fedilink
    English
    arrow-up
    48
    arrow-down
    2
    ·
    2 days 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.

    • Reptorian@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      45 minutes ago

      My small Python (~100 lines of codes) codes aren’t maintainable, but I’m happy with them. I don’t ever plan to work on serious projects with Python, so I can’t say much about it’s maintainability. But, from limited experience, I’d rather use C++, C#, or in my special case, G’MIC if maintainability matters to me.

    • onlinepersona@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      1
      ·
      6 hours ago

      Python has typing hints which mypy uses. It’s similar to something javascripts wants to introduce call type annotations. It also has linters and formatters (ruff which does the work of multiple tools in one and is very fast). It also has unit tests built in as well as popular test libraries like pytest and nox and tox for running tests.

      It is up to the maintainers to use the tools they have been given to make projects maintainable. I have worked on and seen very maintainable python projects of various sizes. While legacy code is always a bit of a nightmare (python 2 and < python 3.6), it doesn’t have to be that way and getting into a python project nowadays is way easier than most other languages I’ve tried (maybe also because it’s what I know well).

      Anti Commercial-AI license

    • 8hob@programming.dev
      link
      fedilink
      English
      arrow-up
      11
      arrow-down
      2
      ·
      2 days 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
      13
      arrow-down
      2
      ·
      2 days 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
        5
        ·
        1 day 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
        10
        arrow-down
        1
        ·
        2 days 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).

    • jjjalljs@ttrpg.network
      link
      fedilink
      arrow-up
      5
      ·
      1 day 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.

    • Hugin@lemmy.world
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      1 day ago

      Yup. Part of what makes python so easy and fast is the lack of things built into languages so they are maintainable in a large project.

      Take duck typing. It’s so easy when you have a small project that can fully understood by a developer. Get into a big project with 10000 classes and you need explicit classes and interfaces just to understand what is going on.

    • FizzyOrange@programming.dev
      link
      fedilink
      arrow-up
      8
      arrow-down
      1
      ·
      2 days 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
      6
      ·
      2 days 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”.

    • FooBarrington@lemmy.world
      link
      fedilink
      arrow-up
      3
      arrow-down
      3
      ·
      edit-2
      1 day 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 expressive than TS. You can’t even define a function that appends two tuples with proper type hints!

      • onlinepersona@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        6 hours ago

        I don’t know when the last time you worked on a python project was (professionally or privately), but things have changed. If all you know if python and python projects from 10 years ago, I’d agree with you, but modern python projects can be made very maintainable. See my other comment.

        As for meta programming, dude, I don’t know if you’re seen C++ templates…

        Anti Commercial-AI license

        • FooBarrington@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          5 hours ago

          Yes, they can be written in maintainable ways, I didn’t disagree in my original comment. That doesn’t change that most of the projects I come across to this day are absolutely unmaintainable messes. I’m not talking about Python from 10 years ago, I’m talking about the projects I encounter now.

          The biggest issue is that you have to limit yourself to a mostly non-dynamic subset of Python if you want type checking etc. to work, and you have to write your own type definitions for many dependencies. Most projects don’t do that, they instead lean into the dynamic nature of Python, which makes them unmaintainable after little time.