+ 1
What means list in list, why this result : list=[1,2,3,4,5,6,7] print(list[list[4]])
Can you describe result a little, why 2times list
1 Respuesta
+ 2
the result is 6
list[4] = 5th element = 5
list[list[4]] = list[5] = 6
Can you describe result a little, why 2times list