Chapitre 22 : Fonctions Lambda Les fonctions lambda sont des fonctions anonymes définies à l'aide du mot-clé lambda. Exemple Python1 2add = lambda x, y: x + y print(add(2, 3)) # Affiche : 5