In python 2.6, I want to do:
f = lambda x: if x==2 print x else raise Exception()
f(2) #should print "2"
f(3) #should throw an exception
This clearly isn't the syntax. Is it possible to perform an if in lambda and if so how to do it?
thanks
|
The syntax you're looking for:
But you can't use |
|||||||||||||||||||||
|
|
why don't you just define a function?
there really is no justification to use lambda in this case. |
|||||||||||||||||||
|
|
Lambdas in Python are fairly restrictive with regard to what you're allowed to use. Specifically, you can't have any keywords (except for operators like So, there's no way you could use a lambda for your example (because you can't use
|
|||||
|
|
You can easily raise an exception in a lambda, if that's what you really want to do.
Is this a good idea? My instinct in general is to leave the error reporting out of lambdas; let it have a value of None and raise the error in the caller. I don't think this is inherently evil, though--I consider the "y if x else z" syntax itself worse--just make sure you're not trying to stuff too much into a lambda body. |
|||||
|
deffor this kind of thing. This is -- possibly -- the worst thing you could do with a lambda. It's a great example of why lambdas are a terrible thing except in really narrow circumstances. – S.Lott Oct 18 '09 at 19:57