Anonymous functions defined inline with the lambda keyword. See Anonymous function — Wikipedia.
lambda <parameters>: <expression>Most useful when passing a short function as an argument — e.g. as a sort key — where defining a full named function would be unnecessary overhead.
python lambda_functions.py