Vidyalelo
Python · Q175

Functions in Python

Programming · Python · question 175

Q175

What will be the output of the following Python code? 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

Answer: Option D

Solution

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