Q. What will be the output of the following code?
Code:
print(type(lambda x: x))
β
Correct Answer: (A)
<class 'function'>
Explanation: Lambda expressions create function objects.