python read text file line by line ignoring \n code example
Example: stripping /n in a readlines for a pytgon file
alist = [line.rstrip() for line in open('filename.txt')]
alist = [line.rstrip() for line in open('filename.txt')]