Vidyalelo
Python · Q164

Functions in Python

Programming · Python · question 164

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
Answer

Answer: Option D

Solution

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