Single Choice
Not Set
QWhat will be the output after the following statements?
x = '''Today is a nice day.
Let's go for a walk.
We'll also go to the park.'''
y = x.split('\n')
print(y)
ID: #4051
Python Built-in Functions MCQ
197 views
Question Info
#4051Q ID
Not SetDifficulty
Python Built-in Functions MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
['Today is a nice day.', "Let's go for a walk.", "We'll also go to the park."]
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic