0
Output Working
What is the output of this code? list = [1, 1, 2, 3, 5, 8, 13] print(list[list[4]]) How its working??
1 ответ
0
First,inner list
list[4]=5
Than,outer list
list[list[4]]=list[5]=8
What is the output of this code? list = [1, 1, 2, 3, 5, 8, 13] print(list[list[4]]) How its working??