English

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

Question

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()
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?
Chapter 2: File Handling in Python - Exercise [Page 37]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 2 File Handling in Python
Exercise | Q 5. | Page 37
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×