I have been trying to read a file in python, the thing is that it returns an empty string. Here is the code:
with open('data.txt') as file:
content = f.readlines()
print(content) #prints nothing
note: It's a really big file, is that a problem?