Advertisements
Advertisements
Question
What is the advantage of using with
clause while opening a data file in Python? Also give syntax of with
clause.
Short Answer
Solution
In Python, when a file is opened using the with clause, the with code block's flow of execution guarantees that open file descriptors are automatically closed.
Syntax:
with open(filename, opening-mode) as fileobject:
Operations on file...
shaalaa.com
Is there an error in this question or solution?