Python Programming - Lambda Functions - Discussion

Discussion Forum : Lambda Functions - General Questions (Q.No. 34)
34.
How is a lambda function different from a regular function?
Lambda functions can have multiple expressions.
Regular functions are always more memory-efficient.
Lambda functions can have named parameters.
Regular functions cannot be used as arguments in higher-order functions.
Answer: Option
Explanation:
Lambda functions are limited to a single expression, making them concise for short tasks.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.