MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following? x = [[0], [1]] print((' '.join(list(map(str, x))))) |
| A. | (‘[0] [1]’,) |
| B. | (’01’,) |
| C. | [0] [1]. |
| D. | 01 |
| Answer» D. 01 | |