On Mon, Jan 9, 2017 at 2:53 PM, Steven D'Aprano
<[email protected]> wrote:
> [(tmp, tmp + 1) for x in data for tmp in [expensive_calculation(x)]]
>
>
> I can't decide whether that's an awesome trick or a horrible hack...
A horrible hack on par with abusing a recursive function's arguments
for private variables. Much better would be to refactor the append
part:
def this_and_one(value):
return value, value + 1
[this_and_one(expensive_calculation(x)) for x in data]
ChrisA
--
https://mail.python.org/mailman/listinfo/python-list