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
a = ['a', 'b', 'c', 'd'] a.pop(1) # now a is ['a', 'c', 'd']