why readlines function reomove \n in python code example
Example 1: stripping /n in a readlines for a pytgon file
alist = [line.rstrip() for line in open('filename.txt')]
Example 2: python readlines without n
temp = file.read().splitlines()
alist = [line.rstrip() for line in open('filename.txt')]
temp = file.read().splitlines()