94.0k views
25 votes
This is your code. >>> A = [21, 'dog', 'red'] >>> B = [35, 'cat', 'blue'] >>> C = [12, 'fish', 'green'] >>> e = [A,B,C] How do you refer to 'green'? e(2, 2) e(2, 2) e(2)(2) e(2)(2) e[2][2] e[2][2] e[2, 2] e[2, 2]

User Mvanle
by
4.6k points

1 Answer

3 votes

Step-by-step explanation:

e[2][2] gives you the output for green

I hope it helped you

User Marcin Romaszewicz
by
3.5k points