Just save the previous when you iterate to the next
prevLine = ""
for line in file:
# do some work here
prevLine = line
This will store the previous line in prevLine
while you are looping
edit apparently OP needs to read this file backwards:
aaand after like an hour of research I failed multiple times to do it within memory constraints
Here you go Lim, that guy knows what he's doing, here is his best Idea:
General approach #2: Read the entire file, store position of lines
With this approach, you also read through the entire file once, but
instead of storing the entire file (all the text) in memory, you only
store the binary positions inside the file where each line started.
You can store these positions in a similar data structure as the one
storing the lines in the first approach.
Whever you want to read line X, you have to re-read the line from the
file, starting at the position you stored for the start of that line.
Pros: Almost as easy to implement as the first approach Cons: can take
a while to read large files