Page 1 of 1

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

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
a) True
b) False