

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? x = [34, 56] print(len(map(str, x))) |
A. | [34, 56]. |
B. | [’34’, ’56’]. |
C. | 34 56 |
D. | error |
Answer» E. | |