Advertisements
Advertisements
Question
What is the difference between the following set of statements (a) and (b):
- P = open(“practice.txt”,”r”)
P.read(10) - with open(“practice.txt”, “r”) as
P: x = P.read()
Distinguish Between
Solution
In code (a), practice.txt will open in read mode and will read 10 bytes from practice.txt file. It does not close the file, because not close() function is called.
In code (b), practice.txt will open in read mode and will read full file content from it. with statement will automatically close the file, when control move out of the with block.
shaalaa.com
Creating and Traversing a Text File (Data Manipulation)
Is there an error in this question or solution?