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
lines = open(filename).read().splitlines()