Python - File Reading and Writing Strategies
What is the mistake in the following Python code snippet that attempts to read the entire content of 'info.txt'?
file = open('info.txt', 'r')
content = file.read
print(content)
file.close()