

MCQOPTIONS
Saved Bookmarks
1. |
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 |
Answer» E. | |