मराठी

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() - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

What is the difference between the following set of statements (a) and (b):

  1. P = open(“practice.txt”,”r”)
    P.read(10)
  2. 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)
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 2: File Handling in Python - Exercise [पृष्ठ ३७]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
पाठ 2 File Handling in Python
Exercise | Q 5. | पृष्ठ ३७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×