Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

What is negative index in Python?

user-image
Question added by Muhammad Kaleem akhtar , Freelancer , Erozgaar Program| Punjab Govt Program
Date Posted: 2019/05/19
Abubakar Yazid
by Abubakar Yazid , Project Manager

Negative indexing usually starts where the array ends which is suppoted by python

Negative Index is starting/reading an array inrevrese, from finish to start.

Jamal Farea
by Jamal Farea , Web Developer , freelance

In python the negitive number is used to start slicing from the end for example 

favorite_food = ['rice',chicken','bread']

print(favorite_food[-1])

the result will be : bread .

Negative indexing works same like general indexing the main difference is it starts from behind/end.
[0,1,2] General
[-2,-1,0] negative index
Thank You

Rishi Setpal
by Rishi Setpal , Mobile Application Developer , Expenzing

Positive Indexing

...

[0,1,2,3,...,a,b,c]

               ...-3-2-1

Negative Indexing 

It is basically accessing index values in reverse order.

for eg: A list stores 5 integers then basically we access it with positive index i.e; list[1] or list[2] etc.

but if we aim to access numbers from back of list then we do it as i.e; list[-1] will give the last element of the list.

Amena Al Lajami
by Amena Al Lajami , Quality Assurance Engineer , Maids.cc

It's reading data from last to first.

komal Ghauri
by komal Ghauri , Senior Technology Project Manager , House Building Finance Limited

nagative index commanly begin where the arry end

Md Haroon
by Md Haroon , Operational Analyst , SoftwareOne

In Python, negative indexing is a feature that allows you to access elements in a sequence, such as a string, list, or tuple, from the end instead of the beginning. It provides a way to conveniently access elements relative to the end of the sequence without having to know its length.

Negative indexing is achieved by using negative numbers as indices. In Python, the index -1 refers to the last element, -2 refers to the second-to-last element, and so on. Here's an example to illustrate negative indexing:

Example:

  my_list = [1, 2, 3, 4, 5] print(my_list[-1]) # Output: 5 print(my_list[-2]) # Output: 4

In the example above, my_list[-1] returns the last element of the list (5), and my_list[-2] returns the second-to-last element (4).

Negative indexing can be particularly useful when you need to access elements in reverse order or when you don't know the length of the sequence in advance. It provides a convenient way to access elements from the end without explicitly calculating the index based on the length of the sequence.

Asid Mahmood
by Asid Mahmood , Computer Instructor , Prime college of science and commerce

Negative index starting with-1 and positive index start  0.Python supports negative indexing, which typically starts where the array ends.

Jolsana Jaimon
by Jolsana Jaimon , Intern , GooseBerry Media

In Python, negative indexing is a feature that allows you to access elements from the end of a sequence, such as a list or a string. The index -1 refers to the last element, -2 refers to the second-to-last element, and soon. For Example:  my_list = [1, 2, 3, 4, 5]

                                                                       last_element = my_list[-1]

                                                                       print(last_element)

                                                                       The Output:5

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.