Vidyalelo
Python · Q62

Functions in Python

Programming · Python · question 62

Q62

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

A.
6
B.
8
C.
9
Answer
D.
error

Answer: Option C

Solution

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