What will be the output of the following Python code?
>>>"Welcome to Python".split()
>>>"Welcome to Python".split()
A. ["Welcome", "to", "Python"]
B. ("Welcome", "to", "Python")
C. {"Welcome", "to", "Python"}
D. "Welcome", "to", "Python"
Answer: Option A
Join The Discussion