In this post, I tried to explain the way lists work and why append is not very expensive. I also posted a solution on the bottom which you could use to delete lines.
The structure of Python's lists is like a node network:
>>> class ListItem:
def __init__(self, value, next=None):
self.value = value
self.next = next
def __repr__(self):
return "Item: %s"%self.value
>>> ListItem("a", ListItem("b", ListItem("c")))
Item: a
>>> mylist = ListItem("a", ListItem("b", ListItem("c")))
>>> mylist.next.next
Item: c
Therefore, append is basically just this:
ListItem(mynewvalue, oldlistitem)
Append doesn't have much overhead, but insert() on the other hand requires you to reconstruct the whole list, and will therefore take much more time.
>>> from timeit import timeit
>>> timeit('a=[]\nfor i in range(100): a.append(i)', number=1000)
0.03651859015577941
>>> timeit('a=[]\nfor i in range(100): a.insert(0, i)', number=1000)
0.047090002177625934
>>> timeit('a=[]\nfor i in range(100): a.append(i)', number=10000)
0.18015429656996673
>>> timeit('a=[]\nfor i in range(100): a.insert(0, i)', number=10000)
0.35550057300308424
As you can see, insert is much slower. If I were you, I would just eliminate the lines you don't need, by writing them back right away.
with open("large.txt", "r") as fin:
with open("large.txt", "w") as f:
for line in fin:
if myfancyconditionismet:
# write the line to the file again
f.write(line + "\n")
# otherwise it is gone
There is my explanation and solution.
-Sunjay03