how to remove last element in 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: 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 3: pop list python

#pop removes the last element
li=[1,2,3,4,5]
li.pop()
#>>>[1, 2, 3, 4]

Example 4: python list pop

# Python pop list

some_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # normal python list
print(some_list) # prints [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

some_list.pop() # pop() is used to pop out one index from a list (default index in pop is -1)
print(some_list) # prints [1, 2, 3, 4, 5, 6, 7, 8, 9]

=====================================================
# Output:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[1, 2, 3, 4, 5, 6, 7, 8, 9]