adplus-dvertising
frame-decoration

Question

What is the output of the code shown below?
l=[-2, 4]
m=map(lambda x:x*2, l)
print(m)

a.

[-4, 16]

b.

Address of m

c.

Error

d.

-4
16

Answer: (b).Address of m

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the code shown below?