remove last element from list python code example
Example 1: how to delete the last item in a list python
# The pop function, without an input, defaults to removing
# and returning the last item in a list.
myList = [1, 2, 3, 4, 5]
myList.pop()
print(myList)
# You can also do this without returning the last item, but it is
# much more complicated.
myList = [1, 2, 3, 4, 5]
myList.remove(myList[len(myList)-1])
print(myList)
Example 2: python get last element of list
mylist = [0, 1, 2]
mylist[-1] = 3 # sets last element
print(myList[-1]) # prints Last element
Example 3: python remove last element from list
record = record[:-1]
Example 4: remove last element from list python
>>> l = list(range(1,5))
>>> l
[1, 2, 3, 4]
>>> l.pop()
4
>>> l
[1, 2, 3]
Example 5: how to remove last item from list python
even_numbers = [2,4,6,8,10,12,15] # 15 is an odd number
# if you wanna remove 15 from the list
even_numbers.pop()
Example 6: how to remove last 2 elements from list in python
l = list(range(1,5))
l = test_list[: len(test_list) - 2]