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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board