I keep getting this error
runfile('C:/Users/Acer Predator/.spyder-py3/temp.py', wdir='C:/Users/Acer Predator/.spyder-py3') <_io.TextIOWrapper name='C:\Users\Acer Predator\est.txt' mode='r' encoding='cp1252'>
I have no idea what I am doing wrong. This is the code that I am using:
file = open ("C:\Users\Acer Predator\est.txt", "r")
print(file)
Some help please!
Expecting the output to be the contents of the file

You won't be able to see the content just by printing the file, you need to call the read method in order to print the content.