MCQ Practice
Single Best Answer
Topic: Python List MCQ
Q
What will be the output after the following statements?
x = ["Yesterday's", "Today's", "Tomorrow's"]
y = ['temperature']
for i in x:
print(i, end=' ')
for j in y:
print(j, end=' ')
Subchapter
Python List MCQ
Action
Choose one option below