Posts

Showing posts with the label Lambda Function

Lambda function or Anonymous function

a , b = 3 , 4 d = lambda a , b : a + b c = d ( a , b ) print ( c ) Result = 7