adplus-dvertising
frame-decoration

Question

What is the output of the following?
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

Posted under Python

Answer: (d).12.1 34.0

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following?