Question d’entretien chez HCLTech

What is lamda equation there in python

Réponse à la question d'entretien

Utilisateur anonyme

25 févr. 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))