Examveda

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: Option D


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python