get last recent element in list python code example
Example 1: python get last element of list
mylist = [0, 1, 2]
mylist[-1] = 3 # sets last element
print(myList[-1]) # prints Last element
Example 2: how to access the last element of a list in python
l = [1, 2, 3, 4, 5]
print(l[-1])