Python | Functions | Question 4
What is the output of the following program :
y = 8 z = lambda x : x * y print (z( 6 )) |
(A) 48
(B) 14
(C) 64
(D) None of the above
Answer: (A)
Explanation: lambdas are concise functions and thus, result = 6 * 8
Quiz of this Question
Please Login to comment...