0
Could anyone please kindly explain why this output is 8? list = [1, 1, 2, 3, 5, 8, 13] Print(list[list[4]])
9/5/2021 2:03:16 PM
2 Answers
+5
easy!!! decompose in parts!! list[4] prints 5 list[5] prints 8
Thank you for the explanation. I understand :)
Send us a message