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