• @[email protected]
        link
        fedilink
        19 months ago

        To each their own. But man imagine if you have a collection of stuff that has a large name, and then having to figure out a short name other than e when iterating. I hope you’re not iterating over chemical names 😬

        • Eager Eagle
          link
          fedilink
          English
          49 months ago

          No need to be over-descriptive. Anything at all more specific than e will probably be a better name

        • @Kalabasa
          link
          English
          19 months ago

          It’s not black and white. I mean, even el is a lot better than e.

    • @noli
      link
      1
      edit-2
      9 months ago

      Depends. If you’re using a good ol’ C-style for loop then nothing’s wrong with for(int i = 0; i < something;i++), but if you’re doing something like iterating over some collection it’s way clearer to do something like for animal in animals: than it is to do for e in animals:. Especially if you’re doing something non-trivial for each element