Which statement is True about lambda functions?
They must have a name
They can have multiple expressions
They are used to define small anonymous functions
They are slower than normal functions and should be avoided


About: I am a Data scientist with a knack for transforming complex data into actionable insights. Proficient in Python, SQL, Tableau, skilled in machine learning, statistical analysis, and data visualisation
Which statement is True about lambda functions?
They must have a name
They can have multiple expressions
They are used to define small anonymous functions
They are slower than normal functions and should be avoided
True: They are used to define small anonymous functions
Exactly. Lambda functions are designed for short, throwaway functionality without naming the function.