KnowledgeBoat Logo

Computer Science

Consider the list aList - ["SIPO", [1, 3, 5, 7] ]. What would the following code print?

print(aList[0][1], aList[1][1])
  1. S, 3
  2. S, 1
  3. I, 3
  4. I, 1

Python List Manipulation

8 Likes

Answer

I, 3

Answered By

3 Likes


Related Questions