Frage im Vorstellungsgespräch bei HCLTech

What is lamda equation there in python

Antwort im Vorstellungsgespräch

Anonym

25. Feb. 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))