

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? x = [12.1, 34.0] print(len(' '.join(list(map(str, x))))) |
A. | 6 |
B. | 8 |
C. | 9 |
D. | error |
Answer» D. error | |