+ 1
How???
What is the output of this code? list = [1, 1, 2, 3, 5, 8, 13] print(list[list[4]]) Its answer is : 8 didn't understand!!
3 Respuestas
+ 4
list[4]=5
so, list[list[4]]=list[5]=8
0
got it!👍 thanks
What is the output of this code? list = [1, 1, 2, 3, 5, 8, 13] print(list[list[4]]) Its answer is : 8 didn't understand!!