Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (106k points)

If you read an entire file with content = open('Path/to/file', 'r').read() is the filehandle left open until the script exits? Is there a more concise method to read a whole file?

1 Answer

0 votes
by (47.6k points)

For reading the entire file in Python you can use the following piece of code which will be the better solution:-

with open('Path/to/file', 'r') as content_file:

content = content_file.read()

This will always close the file immediately after the block ends; even if an exception occurs.

Related questions

0 votes
1 answer
0 votes
1 answer
asked Jul 9, 2019 in Java by Nigam (4k points)
0 votes
1 answer
asked Oct 14, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer
asked Sep 25, 2019 in Python by Sammy (47.6k points)

Browse Categories

...