MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output when following code is executed ? >>>list("a#b#c#d".split('#')) |
| A. | [‘a’, ‘b’, ‘c’, ‘d’]. |
| B. | [‘a b c d’]. |
| C. | [‘a#b#c#d’]. |
| D. | [‘abcd’]. |
| Answer» B. [‘a b c d’]. | |