0
whats the logic of this code?
What is the output of this code? list = [1, 1, 2, 3, 5, 8, 13] print(list[list[4]])
2 Antworten
+ 5
you're using the value at position 4 to get the value from another position in the same list...the answer in this case would be 8