Mega Code Archive

 
Categories / Python / Function
 

Lambda function definition with default value

x = (lambda a="fee", b="fie", c="foe": a + b + c) print x("wee")