lambda arguments : expression
VD
double = lambda x: x * 2 print(double(5))
// output 10
Last updated 2 years ago