The thing I love about python is it’s elegance; and I thing that is partially due to its syntactic sugar. Between list comprehensions, destructuring, enumerators, generators with yield, and a bunch more, what is your favorite

    • sebsch@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      8 months ago

      You’re right. Having just yield sth in a function instead of defining the data structure is such a game changer.

      • tatterdemalion@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        8 months ago

        That’s not quite the same as a generator. Iterators require explicit returns to yield control, and this involves dropping the entire stack frame.

        True generators allow one to yield, which pauses the function and allows it to be resumed. The most similar thing to this in Rust is an async block/fn, but there is ongoing effort to generalize this so you could create an iterator from a generator.