234k views
2 votes
This is your code.

>>> A = [21, 'dog', 'red']
>>> B = [35, 'cat', 'blue']
>>> C = [12, 'fish', 'green']
>>> E = [A, B, C]
What is the value of E[1][0]?
dog
cat
35
O 21

User Mythli
by
6.6k points

1 Answer

2 votes

Answer:

35

Step-by-step explanation:

List E is a 2 dimensional array. We want index 1 of E, which is B. Now we have an index of that list B, it is index 0 so 35.

User BFreeman
by
6.1k points