MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output when the following code is executed ? >>>"Welcome to Python".split() |
| A. | [“Welcome”, “to”, “Python”]. |
| B. | (“Welcome”, “to”, “Python”) |
| C. | {“Welcome”, “to”, “Python”} |
| D. | “Welcome”, “to”, “Python” |
| Answer» B. (“Welcome”, “to”, “Python”) | |