Python Program to Get the Last Element of the 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.

Negative Indexing
List indexing in Python

If you want the first 1st element, you can use my_list[-5].


Also Read:

Your builder path starts here. Builders don't just know how to code, they create solutions that matter.

Escape tutorial hell and ship real projects.

Try Programiz PRO

  • Real-World Projects
  • On-Demand Learning
  • AI Mentor
  • Builder Community

Related Examples