w3resource

Python File I/O: Assess if a file is closed or not

Python File I/O: Exercise-16 with Solution

Write a Python program to assess if a file is closed or not.

Sample Solution:-

Python Code:

 f = open('abc.txt','r')
print(f.closed)
f.close()
print(f.closed)

Sample Output:

False                                                                                                         
True

Flowchart:

Flowchart: File I/O: Assess if a file is closed or not.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to read a random line from a file.
Next: Write a Python program to remove newline characters from a file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.