Reference Materials
Certification Courses
Created with over a decade of experience and thousands of feedback.
Python Program to Get the Last Element of the List
In this example, you will learn to get the last element of this list.
To understand this example, you should have the knowledge of the following Python programming topics:
Using negative indexing
my_list = ['a', 'b', 'c', 'd', 'e']
# print the last element
print(my_list[-1])
Output
e
When you use negative indexing, the counting starts from 1 not 0 as shown in the figure below.
If you want the first 1st element, you can use my_list[-5].
Also Read:
Did you find this article helpful?