DataFrame Lambda Elif

lambda x: x*10 if x<2 else (x**2 if x<4 else x+10)
Busy Bee