I am currently studying the finale of computer science, and I do not understand how this works at all:
L = [8, 6, 7, 5, 3, 0, 9]
30. L [L [3]] - 1 is?
(A) * -1
(B) an error
(C) 8
(D) 4
(E) 7
Answer: -1 .. SO, to check how this works, I just did L [L [3]] and the answer is 0, then I did L [L [4]], and thar is 5, then I did L [L [1]], which gave 9, but if I go L [L [2]], I get an index index out of range. Im out of confusion here. Anyone can help please?
source
share