- A Today's Tomorrow's temperature
- B Today's temperature Tomorrow's temperature
- C temperature Today's Tomorrow's
- D Today's temperature Tomorrow's
Python Programming Language MCQ Python List MCQ
⚠ Report ✓ Question Verified Copy Link
x = ["Yesterday's", "Today's", "Tomorrow's"]
y = ['temperature']
for i in x:
if i[0] == 'T':
for j in y:
print(i, j, end=' ')
Learn More MCQ Questions from Python Programming Language MCQ Python List MCQ