0
Why is the output of this code equal 8 list = [1,1,2,3,5,8] print (list[list(4)])
I am confuse in this output.
1 Antwort
0
here is double indexing:
list[4] = 5 ( I guess it is typo ()->[] )
and then list[list[4]] = list [5] = 8
I am confuse in this output.