Open In App

Python | How to get the last element of list

Last Updated : 18 Aug, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Getting the last element of the list is tricky while tracking each element, here we will discuss multiple methods to get the last element of the list. So we have given a list n, Our task is to get the last element of the list using Python.

Example:

Input: [1, 2, 3, 4, 5, 5]
Output: 5
Input: ["Hello", "World"]
Output: World

Explanation: In both of the outputs we are getting the last value of present in the list.

How to get the last element of a list

Approaches to get the last element of the list:

Get the last item of a list using the Reverse Iterator

To get the last element of the list using the naive method in Python. There can be 2-naive methods to get the last element of the list. Iterating the whole list and getting, the second last element and reversing the list, and printing the first element.

Python3




# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using loop method to print last element
for i in range(0, len(test_list)):
 
    if i == (len(test_list)-1):
        print("The last element of list using loop : "
              + str(test_list[i]))
 
# using reverse method to print last element
test_list.reverse()
print("The last element of list using reverse : "
      + str(test_list[0]))


Output :

The original list is : [1, 4, 5, 6, 3, 5]
The last element of list using loop : 5
The last element of list using reverse : 5

Get the last item of a list using Negative Indexing

To get last element of the list using the [] operator, the last element can be assessed easily if no. of elements in the list are already known. There is 2 indexing in Python that points to the last element in the list.

  • list[ len – 1 ] : This statement returns the last index if the list.
  • list[-1] : Negative indexing starts from the end.

Python3




# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using len - 1 index to print last list element
print("The last element using [ len -1 ] is : "
      + str(test_list[len(test_list) - 1]))
 
# using -1 index to print last list element
print("The last element using [ -1 ] is : "
      + str(test_list[-1]))


Output :

The original list is : [1, 4, 5, 6, 3, 5]
The last element using [ len -1 ] is : 5
The last element using [ -1 ] is : 5

Get the last item of a list using list.pop()

To get the last element of the list using list.pop(), the list.pop() method is used to access the last element of the list. The drawback of this approach is that it also deletes the list’s last element, hence is only encouraged to use when the list is not to be reused. 

Python3




# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using pop() to print last list element
print("The last element using pop() is : "
      + str(test_list.pop()))


Output :

The original list is : [1, 4, 5, 6, 3, 5]
The last element using pop() is : 5

Get the last item of a list using reversed() with next() 

To get the last element of the list using reversed() + next(), the reversed() coupled with next() can easily be used to get the last element, as, like one of the naive methods, the reversed method returns the reversed ordering of list as an iterator, and next() method prints the next element, in this case, last element. 

Python3




# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using reversed() + next() to print last element
print("The last element using reversed() + next() is : "
      + str(next(reversed(test_list))))


Output :

The original list is : [1, 4, 5, 6, 3, 5]
The last element using reversed() + next() is : 5

Get the last item of a list by slicing

In this example, we will use list slicing to get the last element from the list.

Python3




# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
li = last_elem = test_list[-1:][0]
 
# using slicing to print last element
print("The last element using slicing is : ", li)


Output:

The original list is : [1, 4, 5, 6, 3, 5]
The last element using slicing is : 5

Get the last item of a list using itemgetter

The itemgetter can be used instead of lambda functions.  In terms of performance over time, itemgetter is better than lambda functions. When accessing many values, it appears more concise than lambda functions. Here, we will use itemgetter to get out the last element in the list.

Python3




import operator
 
# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
li = last_elem = operator.itemgetter(-1)(test_list)
 
# using itemgetter to print last element
print("The last element using itemgetter is : ", li)


Output:

The original list is : [1, 4, 5, 6, 3, 5]
The last element using itemgetter is : 5

Get the last item of a list using deque from the collections module

Convert the given list to a deque object. Use the pop() method to remove and return the last element of the deque object.Return the popped element as the result.

Python3




from collections import deque
 
# initializing list
test_list = [1, 4, 5, 6, 3, 5]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using deque and pop method to print last list element
last_elem = deque(test_list).pop()
print("The last element using deque is : " + str(last_elem))


Output

The original list is : [1, 4, 5, 6, 3, 5]
The last element using deque is : 5

The above code returns the last element of the given list using the deque.pop() method from the collections module.

Time Complexity: The time complexity of this approach is O(1) since the pop() operation on deque takes constant time.
Space Complexity: space complexity is O(n) since the deque object is created to store the list elements.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads