letters = ["a", "b", "c", "d", "e"] letters.pop(0) letters.pop(1) print(letters) #pop will also return the value if you want to use it