In this article, we will learn about the “with” statement in Python and its usage.
In Python, the with statement replaces the try-catch block in a concise way.
More importantly, it ensures that the resource is closed immediately after processing.
Using the with statement to read or write files is a common usage.
A context manager is a function or class that supports the with statement. Context managers enable you to open and close resources when you want.
For example, the open() function is a context manager. When you call the open() function using the with statement, the file is automatically closed after processing the file.
Use the "with" statement to open and read files
Algorithm (steps)
The following are the algorithms/steps to perform the required task:
-
Use the open() function (which opens a file and returns a file object as a result) to open a text file in read-only mode (the "# here" by passing it the filename and mode as arguments) ##r" indicates read-only mode).
with open(inputFile, 'r') as fileData:
- Use the
readlines() function to get a list of lines for a given text file.
file.readlines(hint)
- Use a for loop to iterate through each line of a given text file.
- Print the corresponding lines of the text file. The Chinese translation of
is:
Example
# input file path
inputFile = "ExampleTextFile.txt"
print("The lines of a given Text File are:")
# Opening the given file in read-only mode.
with open(inputFile, 'r') as fileData:
# Read the above file lines using readlines()
fileLines = fileData.readlines()
# Traverse in the each line of the text file
for textLine in fileLines:
# printing each line
print(textLine)
Output
The lines of a given Text File are:
Good Morning this is Tutorials Point sample File
Consisting of Specific
Good source codes in Python,Seaborn,Scala
Summary and Explanation
Use the keyword `with` not only to open a file in read mode, but also to assign an alias to the opened file. Use "with" statement instead of try-catch block
In Python, you can use try-catch error handling to open and write files.
Under the hood, the
with statement will replace the following try-catch block The Chinese translation of
Exampleis:
Example
# opening the file in write mode using the open() function
inputFile = open("tutorialsFile.txt", "w")
# handling the exceptions using try-catch blocks
try:
# writing text into the file
inputFile.write("Hello tutorialsPoint python")
finally:
# closing the file
inputFile.close()
Output
Hello tutorialsPoint python
This program opens the file tutorialsFile.txt. If no such file exists, the program creates it. The code then writes "Hello tutorialsPoint python" to the file and then closes the file.
There is no problem with this method. However, this task can be accomplished more elegantly using thewith statement.
Now let’s recreate the previous example using thewith statement −
# opening a file in write mode with an alias name using with statement with open("tutorialsFile.txt", "w") as file: # writing text into the file file.write("Hello tutorialsPoint python")This simplifies the code because the with statement can handle closing the file after it has been used. This is why generally using the with statement is the preferred technique for opening files in Python.
Python "with" statement and context manager
When processing files, you may think that the with statement only applies to the open() function. However, it is not. Classes and objects that support the with statement can also be created.
A context manager is a class or function that supports the
with statement
If you want to add resource management to your project, you can use a context manager. To be considered acontext manager, a class must implement the following two methods −
- __enter__()
- __exit__()
After implementing these methods, you can use the with statement on objects of the class.
- When the with statement is called, the __enter__() method will be called.
- When you exit the scope of the with block, the __exit__() method will be called.
Create a context manager for file writing
The function of this class is the same as the open() method
class FileWriter(object): def __init__(self, fileName): self.fileName = fileName def __enter__(self): self.file = open(self.fileName, "w") return self.file def __exit__(self, exception_type, exception_value, traceback): self.file.close()How to use the above program
- Using FileWriter(filename), a new FileWriter object is created and __enter__() is called.
- __enter__() method is used to initialize the required resources. In this case it opens a text file. It must also return the descriptor of the resource and therefore the open file.
- as file assigns the file to a variable named file.
- Finally, in the with block after the colon, place the code that will be executed with the obtained resource.
- When this code execution is completed, the __exit__() method will be automatically called. In this case it closes the file.
The context manager written before is a class, but what if you want to create a context manager method similar to the open() function? Python also allows you to write context manager methods.
Convert a method to a context manager using the
contextlib module. The Chinese translation of
Exampleis:
Example
# importig the contextmanager from contextlib module
from contextlib import contextmanager
# Marking the file_open() function as a context manager
# using contextmanager decorator
@contextmanager
def file_open(name):
try:
file = open(name, "w")
yield file
finally:
file.close()
with file_open("exampleFile.txt") as file:
file.write("Hello tutorialsPoint python")
The translation of
exampleFile.txtis:
exampleFile.txt
Hello tutorialsPoint python
Here, we use the with keyword to create a new function and name it. When we call this function, it tries to open the specified file in write mode and returns the result. If an error occurs, the file will be closed. in conclusion
We learned how to use the with statement with examples in this article.
The above is the detailed content of What is the use of WITH statement in Python?. For more information, please follow other related articles on the PHP Chinese website!

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

In this tutorial you'll learn how to handle error conditions in Python from a whole system point of view. Error handling is a critical aspect of design, and it crosses from the lowest levels (sometimes the hardware) all the way to the end users. If y

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
