Examveda

What is the output of the following code:
square = lambda x: x**2
result = square(5)
print(result)

A. 25

B. 5

C. 10

D. 15

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python