Report Bug
Qus :

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”


Solution
A. [“Welcome”, “to”, “Python”]



Explanation
split() function returns the elements in a list.



Report Bug