HCLTech interview question

What is lamda equation there in python

Interview Answer

Anonymous

Feb 25, 2022

A lambda function is an anonymous function. This function can have any number of parameters but, can have just one statement. For Example: a = lambda x, y : x*y print(a(7, 19))