lambda function definition with default value
x = (lambda a="fee", b="fie", c="foe": a + b + c) print x("wee")