adplus-dvertising
frame-decoration

Question

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

a.

[1, 2, 3, 4].

b.

[1234].

c.

[[1], [2], [3], [4]].

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?