I can't see any reason why you're doing all of this manual seeking and reading - this isn't C. Python lets you iterate over the lines in a file really easily:
myFile = file("fibnumbers.txt")
for line in myFile:
print line This will go through each line in the file and print it. Simple eh?