189k 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][2]?


cat

gree

fish

blue

User Ipinak
by
3.4k points

2 Answers

4 votes

Blue

Step-by-step explanation:

Because the row is 1 and the column in 2.

User Hassan Mokdad
by
4.5k points
3 votes

Answer:

fish

I got it right plus i put the code into python and it came out as fish

Step-by-step explanation:

User Lithilion
by
4.8k points