remove last element from list slice code example

Example 1: remove last element from arraylist java

ArrayList<Integer> list = new ArrayList<>();
list.add(1);
list.add(2);
list.add(3);

list.remove(list.size()-1); //removes 3

Example 2: 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)