Advertisements
Advertisements
प्रश्न
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()
फरक स्पष्ट करा
उत्तर
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)
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?