• @dustyData
    link
    English
    652 months ago

    As a professor said, most programming languages don’t care about readability and whitespace. But we care because humans need it to parse meaning. Thus, write code for people, not for the machine. Always assume that someone with no knowledge of the context will have to debug it, and be kind to them. Because that someone might be you in six months when you have completely forgotten how the code works.

    • @[email protected]
      link
      fedilink
      English
      182 months ago

      Exactly. You read code way more times than you write it, so it makes all the sense in the world to prioritize readability.

    • oce 🐆
      link
      fedilink
      English
      72 months ago

      Python forcing end of line and tabs kinda does. Add Black auto-formatter and it’s pretty good.

      • @[email protected]
        link
        fedilink
        English
        12 months ago

        I’ve seen too many Python devs write out complex statements all on one crammed up line. Including some that are in the main docs.

        Enforced whitespace is just one aspect of readable code. There are many others, and Python is no better at enforcing those than any other language.

        • oce 🐆
          link
          fedilink
          English
          22 months ago

          That would probably make very long lines and black would automatically add returns to line with proper indentations. But it has a a limit for sure. If you chain many list comprehensions it’s going to be a mess.

    • @[email protected]
      link
      fedilink
      English
      6
      edit-2
      2 months ago

      Yep, if you’re writing code for a machine, just do it in binary to save compilation time (/s just in case). Also, you in six months will indeed be someone with no knowledge of the context. And every piece of code you think you write for one-time use is guaranteed to be reused every day for the next 5 years

      • @[email protected]
        link
        fedilink
        English
        202 months ago

        And every piece of code you think you write for one-time use is guaranteed to be reused every day for the next 5 years

    • @[email protected]
      link
      fedilink
      English
      22 months ago

      Yeah I totally agree. You can minimize and optimize as part of your build procedure/compilation but the source code should be as readable as possible for humans.