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

Choose the Best Option

Click any option to instantly check if you're correct.

  • A ['Today is a nice day.', "Let's go for a walk.", "We'll also go to the park."]
  • B Today is a nice day.
  • C Let's go for a walk.
  • D We'll also go to the park.
Correct Answer

Explanation

['Today is a nice day.', "Let's go for a walk.", "We'll also go to the park."]

Share This Question

Challenge a friend or share with your study group.