The fast, concise, pythonic way to do this is with a list comprehension.
>>> l2 ['a', 'b', 'c', 'd'] >>> [i for i in l2 if i != 'a'] ['b', 'c', 'd']