Open In App

Writing files in background in Python

Last Updated : 24 Jul, 2024
Comments
Improve
Suggest changes
2 Likes
Like
Report

How to write files in the background in Python? 

The idea is to use multi-threading in Python. It allows us to write files in the background while working on another operation. In this article, we will make a 'Asyncwrite.py' named file to demonstrate it. This program adds two numbers while it will also write a file in the background. Please run this program on your own system so that you can see the file made.

Output: 

Enter a string to store: HelloWorld
The program can continue while it writes in another thread
100 + 400 = 500
Finished background file write to out.txt
Waited until thread was complete

The program will ask to enter a string and will calculate the sum of two numbers and in the background, it writes the 'entered string' to the output file named 'out.txt'.Check your directory where your 'Asyncwrite.py' file exists and you'll also find a file named 'out.txt' with your string stored in it.

Purpose:
The general purpose of writing files in the background is that you can add your data to a file in the background while making the program to do another task within the program. For eg. You can write the received input from the user to file while performing another task for the same user.

Reference:  


Next Article
Article Tags :
Practice Tags :

Similar Reads