

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? x = [12, 34] print(len(list(map(int, x)))) |
A. | 2 |
B. | 1 |
C. | error |
D. | none of the mentioned |
Answer» B. 1 | |