Examveda

What will be the output of the following Python code?
y = 6
z = lambda x: x * y
print z(8)

A. 48

B. 14

C. 64

D. None of the mentioned

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python