0
Q:

how to use if else in lambda python

lambda <arguments> : <Return Value if condition is True> if <condition> else <Return Value if condition is False>
lambda x : True if (x > 10 and x < 20) else False
5
func = lambda element: (expression and DoSomething) or DoSomethingIfExpressionIsFalse
0

New to Communities?

Join the community