Aller au contenu

Chapitre 22 : Fonctions Lambda

Les fonctions lambda sont des fonctions anonymes définies à l'aide du mot-clé lambda.

Exemple

Python
add = lambda x, y: x + y
print(add(2, 3))  # Affiche : 5