…from people who seem to refuse to install paredit or coloring plugins for either? ps lisp syntax ftw, it’s a feature!

  • @[email protected]
    link
    fedilink
    -34 months ago

    No it’s how Python wants you to format. Many times I want to separate two logical sections in one function and can’t coz Python go crazy

    • Diplomjodler
      link
      fedilink
      64 months ago

      Just put them in separate functions. If you have too many levels of indent, your code is convoluted. Sticking to the line length limit sometimes forces you to write more lines than you’d like to. But it makes everything so much more readable that it’s 100% worth the trade off

      • @[email protected]
        cake
        link
        fedilink
        34 months ago

        What if the logic is more readable in one function?

        I use whitespace to make my code more legible, python forces more whitespace consistency but it comes at the cost of limiting the legibility.

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

      Are you saying that you want to separate your two logical sections by having different levels of indentation and that’s what makes Python go crazy?