Vidyalelo
Python · Q22

Functions in Python

Programming · Python · question 22

Q22

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

A.
2
B.
3
C.
7
Answer
D.
8

Answer: Option C

Solution

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