78.8k 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[2][1]
Ofish
green
cat
O blue

1 Answer

1 vote
the value of E[2][1] is fish
User Pavlo Kozlov
by
5.2k points