Hacker News new | ask | show | jobs
by NoahTheDuke 2207 days ago
The issue with that is the lack of lexical scope. Lambdas have lexical scoping, def functions do not. To “fake” lexical scope, you have to use the nonlocal or global statements, which are gross and self-defeating.
1 comments

Not sure I understand, defs have lexical scoping too, if you just read variables (or am I getting rusty?).

  x = 3

  def prt():
      print(x)

  prt()
prints 3, as expected.

It's when you assign that you need P3's global etc. annotations, and you can't assign in lambdas.