Hacker News new | ask | show | jobs
by billyjmc 996 days ago
I’m not sure what they mean by list comprehensions, either, but for completeness’s sake, I must point out that this is solvable by adding `n` as a keyword argument defaulting to `n`:

    add_n = [lambda x, n=n: x + n for n in range(10)]
    add_n[9](10)  # 19
    add_n[0](10)  # 10
1 comments

This is the way

Also pylsp warns you about this