Q117
What will be the output of the following Python code? x=[[1],[2]] print(" ".join(list(map(str,x))))
A.
[1] [2]
AnswerB.
[49] [50]
C.
Syntax error
D.
[[1]] [[2]]
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board