Q164
What will be the output of the following Python code? x = [12.1, 34.0] print(' '.join(list(map(str, x))))
A.
12 1 34 0
B.
12.1 34
C.
121 340
D.
12.1 34.0
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board