+ 1
list=[1,1,2,3,4,5,6,7] print(list[list[4]])
Output along with explanation please đ
6 RĂ©ponses
+ 1
Try answering these questions.
1. What is list[4]?
2. Which type is list[4]?
3. Can I put complex expressions inside array indexing?
Once answered, you may gain some more insight of what follows.
+ 1
yes now i understood...thanks a lot đđąđąđđš đđĄđđČđđ„ đđđđ
0
list=[1,1,2,3,5,8,13]
print(list[list[4]])
i got 8 as an output here...why not 5???