No Multiline Lambda in Python: Why not?

Look at the following:

map(multilambda x:
      y=x+1
      return y
   , [1,2,3])

Is this a lambda returning (y, [1,2,3]) (thus map only gets one parameter, resulting in an error)? Or does it return y? Or is it a syntax error, because the comma on the new line is misplaced? How would Python know what you want?

Within the parens, indentation doesn’t matter to python, so you can’t unambiguously work with multilines.

This is just a simple one, there’s probably more examples.

Leave a Comment