MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following? x = ['ab', 'cd'] print(list(map(list, x))) |
| A. | [‘a’, ‘b’, ‘c’, ‘d’]. |
| B. | [[‘ab’], [‘cd’]]. |
| C. | [[‘a’, ‘b’], [‘c’, ‘d’]]. |
| D. | none of the mentioned |
| Answer» D. none of the mentioned | |