Pergunta de entrevista da empresa HCLTech

What is lamda equation there in python

Resposta da entrevista

Sigiloso

25 de fev. de 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))