Python - File Reading and Writing Strategies
What will be the output of this code if 'test.txt' contains:\nLine1\nLine2\n\nLine4\n?
with open('test.txt') as f:
for line in f:
print(line.strip())