if I have something like the following
file = open(filename, 'rb')
for line in file:
#do stuff
Once I find what I'm looking for in file and it's placed in the line variable, how could I then capture that position withing file, not just line?