What is a negative index in python?

Answer Posted / chaitanya

Python arrays & list items can be accessed with positive or negative numbers (also known as index).

For instance our array/list is of size n, then for positive index 0 is the first index, 1 second, last index will be n-1. For negative index, -n is the first index, -(n-1) second, last negative index will be – 1.

A negative index accesses elements from the end of the list counting backwards.

An example to show negative index in python

>>> import array

>>> a= [1, 2, 3]

>>> print a[-3]

1

>>> print a[-2]

2

>>> print a[-1]

3

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is set when we have to use?

470


What does the __ init__ function do in python?

488


What is the best python interpreter?

469


What are the python types?

437


Is del the same as remove()? What are they?

465






What is loop and types?

475


Explain about zip() in python?

488


Do lists start at 0 or 1 java?

482


Does python support multiple inheritance?

449


What is memory management in python?

442


What is whitespace in python?

476


What is dogpile mechanism? Explain.

552


Is yield a keyword in python?

443


How are the functions help() and dir() different?

457


How to write a text from from another text file in python ?

481