232,545 views
18 votes
18 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

User Beto Frega
by
3.1k points

1 Answer

15 votes
15 votes
the value of E[2][1] is fish
User Shiami
by
3.2k points