Examveda

The output of the following codes are the same.
[x**2 for x in range(10)]
list(map((lambda x:x**2), range(10)))

A. True

B. False

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python