How to use “with” keyword to open text file in Python

How to use “with” keyword to open text file in Python
64 / 100

Python offers you a bunch of amazing functionalities to import data from text files.

One of them is “with” keyword which can be used to open text file to obtain data.

The with statement in Python is used to open a file and create a context in which the file will be used. The main advantage of using with to open a file is that it automatically takes care of closing the file, even if an exception occurs during the processing of the file.

Let’s see an example on how to use it,

with open('file.txt', 'r') as file:

    data = file.read()

    print(data)

In above example, the open function is used to open the file ‘file.txt’ in read mode (‘r’). The file is then processed within the with statement, after which the file is automatically closed, even if an exception occurs. The data read from the file is stored in the data variable and can be processed as needed.

The important point to remember is that ‘file.txt’ represents the path of the file.

If your file is on desktop then your code will be

with open('desktop/file.txt', 'r') as file:

    data = file.read()

    print(data)

Submit a Comment

Your email address will not be published. Required fields are marked *

academic Sidebar Image

Unlock the power of data with our user-friendly statistics calculator.

Explore now
academic Sidebar Image

Explore our data science courses to supercharge your career growth in the world of data and analytics.

REGISTER FOR COURSES
academic Sidebar Image

Test Your Skills With Our Quiz

SOLVE QUIZ

Contact me today! I have solution to all your problems.

Please enable JavaScript in your browser to complete this form.