Which description of a lambda expression is accurate in Python?
It creates a statement block that must use return.
It executes once and stores only the resulting value.
It creates a function that always produces None.
It creates a function with one implicitly returned expression.✓Correct answer
Explanation
Lambda creates a function whose body is limited to one expression, and evaluating that expression supplies the call result implicitly. It cannot contain an arbitrary suite of statements, and it does not inherently return None.