MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following? x = 1234 print(list(map(list, x))) |
| A. | [1, 2, 3, 4]. |
| B. | [1234]. |
| C. | [[1], [2], [3], [4]]. |
| D. | none of the mentioned |
| Answer» E. | |