Run
mylist = [21, 5, 8, 52, 21, 87, 52] # Delete last item in mylist mylist.pop() print(mylist)
Output