Vidyalelo
Python · Q66

Functions in Python

Programming · Python · question 66

Q66

What will be the output of the following Python code? x = [[0], [1]] print((' '.join(list(map(str, x)))))

A.
('[0] [1]',)
B.
('01',)
C.
[0] [1]
Answer
D.
01

Answer: Option C

Solution

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