A. A built-in Python function एक अंतर्निहित पायथन फ़ंक्शन
B. A one-line anonymous function एक-पंक्ति वाला अनाम फ़ंक्शन
C. Lambda is a function in python but user can not use it. लैम्ब्डा पायथन में एक फंक्शन है लेकिन उपयोगकर्ता इसका उपयोग नहीं कर सकता।
D. None of the above उपर्युक्त में से कोई नहीं
Correct Answer is :
B. A one-line anonymous function
Explanation
Lambda functions in Python are concise, anonymous functions often used for short, simple operations. They are defined using the lambda keyword and are particularly useful in situations where a small, temporary function is needed, such as when using functions like map(), filter(), or sorted().