Vidyalelo
Python · Q90

Functions in Python

Programming · Python · question 90

Q90

What will be the output of the following Python code? l=[-2, 4] m=map(lambda x:x*2, l) print(m)

A.
[-4, 16]
B.
Address of m
Answer
C.
Error
D.
-4
  16

Answer: Option B

Solution

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