Random832 wrote:

> for a in collection:
>     b = some_calculation_of(a)
>     final b: do_something_with(lambda: ... b ...)

I would prefer something like

  for a in collection:
    let b = some_calculation_of(a):
      do_something_with(lambda: ... b ...)

--
Greg
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to