Vidyalelo
Python · Q61

Functions in Python

Programming · Python · question 61

Q61

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
Answer
B.
False

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board