Python | Functions | Question 4

Last Updated :
Discuss
Comments

What is the output of the following program :

python
y = 8
z = lambda x : x * y
print(z(6))

48

14

64

None of the above

Share your thoughts in the comments