CBSE Class 11 Computer Science
Question 29 of 104
List Manipulation — Question 17
Back to all questions 17
Question Question 17
Consider the list aList - ["SIPO", [1, 3, 5, 7] ]. What would the following code print?
print(aList[0][1], aList[1][1])- S, 3
- S, 1
- I, 3 ✓
- I, 1