In this simple file IO operation, is x.txt
closed at the end of f.read
?
Also, how would I check to see if that file is still open or not?
with open("x.txt") as f:
data = f.read()
In this simple file IO operation, is x.txt
closed at the end of f.read
?
Also, how would I check to see if that file is still open or not?
with open("x.txt") as f:
data = f.read()
The file object referenced by
f
will be closed when control leaves the with-statement's code block. In fact, that is why you use a with-statement to open a file in the first place. Other than automatically closing the file when done, the construct serves no purpose.You can test this for yourself by printing the
f.closed
flag: