I want to remove the \n that comes at the end of every line of a text file as i need to put each line as a separate list item in a list.
with open("PythonTestFile.txt", "rt") as openfile:
for line in openfile:
new_list = []
new_list.append(line)
print(new_list)
This is what i get
['1) This is just an empty file.\n']
['2) This is the second line.\n']
['3) Third one.\n']
['4) Fourth one.\n']
['5) Fifth one.\n']
This is what I want
['1) This is just an empty file.']
['2) This is the second line.']
['3) Third one.']
['4) Fourth one.']
['5) Fifth one.']