Python - File Reading and Writing Strategies
What will be the output of this code if the file 'example.txt' contains the text "Hello\nWorld"?
with open('example.txt') as f:
content = f.read()
print(content)