What will be the output of the following Python code?
print("Welcome to Python".split())
Qus
निम्नलिखित Python कोड का आउटपुट क्या होगा?
print("Welcome to Python".split())
A. [“Welcome”, “to”, “Python”]
B. (“Welcome”, “to”, “Python”)
C. {“Welcome”, “to”, “Python”}
D. “Welcome”, “to”, “Python”