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