0
what does this error mean ?
<built-in method read of _io.TextIOWrapper object at 0x000002712C7E91E0> I tried to write this code : with open('filename.txt') as f: print(f.read)
2 Answers
+ 8
it is no errorđ
it is the output of the function read.
u wanted the result
read()
+ 6
missing parenthesis
print(f.read())