You can filter it like this
orig = ["He", "is", "so", "", "cool"]
result = [x for x in orig if x]
Or you can use filter. In python 3 filter returns a generator, thus list() turns it into a list. This works also in python 2.7
result = list(filter(None, orig))