0
I do not understand
list =[1, 1, 2, 3, 5, 8, 13] print(list(list[4]))
2 Answers
+ 2
Copy the code, paste it in a script on sololearn playground, see what happens!
+ 2
ABOxTRKi you are using wrong parentheses.
Try this:
print(list[list[4]])
list =[1, 1, 2, 3, 5, 8, 13] print(list(list[4]))