I am trying to determine the best way to handle getting rid of newlines when reading in newline delimited files in Python.
What I\'ve come up with is the following c
for line in file('/tmp/foo'): print line.strip('\n')