McqMate
| Q. |
>>>"Welcome to Python".split() |
| A. | [“welcome”, “to”, “python”] |
| B. | (“welcome”, “to”, “python”) |
| C. | {“welcome”, “to”, “python”} |
| D. | “welcome”, “to”, “python” |
| Answer» A. [“welcome”, “to”, “python”] | |
| Explanation: split() function returns the elements in a list. | |
View all MCQs in
Problem Solving and Python ProgrammingNo comments yet