strip and remove \n while reading lines in pythin 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')]