Login
Remember
Register
Ask a Question
What are negative indices?
0
votes
asked
May 10, 2023
in
Python Flask
by
john ganales
What are negative indices?
negative
indices
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 10, 2023
by
john ganales
Let’s take a list for this.
>>> mylist=[0,1,2,3,4,5,6,7,8]
A negative index, unlike a positive one, begins searching from the right.
>>> mylist[-3]
6
This also helps with slicing from the back:
>>> mylist[-6:-1]
[3, 4, 5, 6, 7]
...