adplus-dvertising
frame-decoration

Question

What is the output of the following?
x = 'abcd'
print(list(map([], x)))

a.

[‘a’, ‘b’, ‘c’, ‘d’].

b.

[‘abcd’].

c.

[[‘a’], [‘b’], [‘c’], [‘d’]].

d.

none of the mentioned

Answer: (d).none of the mentioned

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 following?