Writing to file in Python - GeeksforGeeks (2024)

Last Updated : 19 Jun, 2024

Summarize

Comments

Improve

Python provides inbuilt functions for creating, writing and reading files. There are two types of files that can be handled in python, normal text files and binary files (written in binary language, 0s and 1s).

  • Text files: In this type of file, Each line of text is terminated with a special character called EOL (End of Line), which is the new line character (‘\n’) in python by default.
  • Binary files: In this type of file, there is no terminator for a line and the data is stored after converting it into machine-understandable binary language.

Note: To know more about file handling click here.

Table of content

  • Access mode
  • Opening a file
  • Closing a file
  • Writing to file
    • Appending to a file
    • With statement

Access mode

Access modes govern the type of operations possible in the opened file. It refers to how the file will be used once it’s opened. These modes also define the location of the File Handle in the file. File handle is like a cursor, which defines from where the data has to be read or written in the file. Different access modes for reading a file are –

  1. Write Only (‘w’) : Open the file for writing. For an existing file, the data is truncated and over-written. The handle is positioned at the beginning of the file. Creates the file if the file does not exist.
  2. Write and Read (‘w+’) : Open the file for reading and writing. For an existing file, data is truncated and over-written. The handle is positioned at the beginning of the file.
  3. Append Only (‘a’) : Open the file for writing. The file is created if it does not exist. The handle is positioned at the end of the file. The data being written will be inserted at the end, after the existing data.

Note: To know more about access mode click here.

Opening a File

It is done using the open() function. No module is required to be imported for this function. Syntax:

File_object = open(r"File_Name", "Access_Mode")

The file should exist in the same directory as the python program file else, full address of the file should be written on place of filename. Note: The r is placed before filename to prevent the characters in filename string to be treated as special character. For example, if there is \temp in the file address, then \t is treated as the tab character and error is raised of invalid address. The r makes the string raw, that is, it tells that the string is without any special characters. The r can be ignored if the file is in same directory and address is not being placed.

Python
# Open function to open the file "MyFile1.txt" # (same directory) in read mode and file1 = open("MyFile.txt", "w") # store its reference in the variable file1 # and "MyFile2.txt" in D:\Text in file2 file2 = open(r"D:\Text\MyFile2.txt", "w+") 

Here, file1 is created as object for MyFile1 and file2 as object for MyFile2.

Closing a file

close() function closes the file and frees the memory space acquired by that file. It is used at the time when the file is no longer needed or if it is to be opened in a different file mode. Syntax:

File_object.close()
Python
# Opening and Closing a file "MyFile.txt" # for object name file1. file1 = open("MyFile.txt", "w") file1.close() 

Writing to file

There are two ways to write in a file.

  1. write() : Inserts the string str1 in a single line in the text file.
File_object.write(str1)
  1. writelines() : For a list of string elements, each string is inserted in the text file. Used to insert multiple strings at a single time.
File_object.writelines(L) for L = [str1, str2, str3] 

Note: ‘\n’ is treated as a special character of two bytes. Example:

Python
# Python program to demonstrate# writing to file# Opening a filefile1 = open('myfile.txt', 'w')L = ["This is Delhi \n", "This is Paris \n", "This is London \n"]s = "Hello\n"# Writing a string to filefile1.write(s)# Writing multiple strings# at a timefile1.writelines(L)# Closing filefile1.close()# Checking if the data is# written to file or notfile1 = open('myfile.txt', 'r')print(file1.read())file1.close()

Output:

HelloThis is DelhiThis is ParisThis is London

Appending to a file

When the file is opened in append mode, the handle is positioned at the end of the file. The data being written will be inserted at the end, after the existing data. Let’s see the below example to clarify the difference between write mode and append mode.

Python
# Python program to illustrate# Append vs write modefile1 = open("myfile.txt", "w")L = ["This is Delhi \n", "This is Paris \n", "This is London \n"]file1.writelines(L)file1.close()# Append-adds at lastfile1 = open("myfile.txt", "a") # append modefile1.write("Today \n")file1.close()file1 = open("myfile.txt", "r")print("Output of Readlines after appending")print(file1.read())print()file1.close()# Write-Overwritesfile1 = open("myfile.txt", "w") # write modefile1.write("Tomorrow \n")file1.close()file1 = open("myfile.txt", "r")print("Output of Readlines after writing")print(file1.read())print()file1.close()

Output:

Output of Readlines after appendingThis is DelhiThis is ParisThis is LondonTodayOutput of Readlines after writingTomorrow

With statement

with statement in Python is used in exception handling to make the code cleaner and much more readable. It simplifies the management of common resources like file streams. Unlike the above implementations, there is no need to call file.close() when using with statement. The with statement itself ensures proper acquisition and release of resources. Syntax:

with open filename as file:
Python
# Program to show various ways to# write data to a file using with statementL = ["This is Delhi \n", "This is Paris \n", "This is London \n"]# Writing to filewith open("myfile.txt", "w") as file1: # Writing data to a file file1.write("Hello \n") file1.writelines(L)# Reading from filewith open("myfile.txt", "r+") as file1: # Reading form a file print(file1.read())

Output:

HelloThis is DelhiThis is ParisThis is London

Note: To know more about with statement click here.

using for statement:

steps:

To write to a file in Python using a for statement, you can follow these steps:

Open the file using the open() function with the appropriate mode (‘w’ for writing).
Use the for statement to loop over the data you want to write to the file.
Use the file object’s write() method to write the data to the file.
Close the file using the file object’s close() method.

In this example, the file is opened for writing using the with open(‘file.txt’, ‘w’) as f statement. The data to be written is stored in a list called data. The for statement is used to loop over each line of data in the list. The f.write(line + ‘\n’) statement writes each line of data to the file with a newline character (\n) at the end. Finally, the file is automatically closed when the with block ends.

Python
# Open the file for writingwith open('file.txt', 'w') as f: # Define the data to be written data = ['This is the first line', 'This is the second line', 'This is the third line'] # Use a for loop to write each line of data to the file for line in data: f.write(line + '\n') # Optionally, print the data as it is written to the file print(line)# The file is automatically closed when the 'with' block ends

Output

This is the first lineThis is the second lineThis is the third line

Approach:
The code opens a file called file.txt in write mode using a with block to ensure the file is properly closed when the block ends. It defines a list of strings called data that represents the lines to be written to the file. The code then uses a for loop to iterate through each string in data, and writes each string to the file using the write() method. The code appends a newline character to each string to ensure that each string is written on a new line in the file. The code optionally prints each string as it is written to the file.

Time Complexity:
Both the original code and the alternative code have a time complexity of O(n), where n is the number of lines to be written to the file. This is because both codes need to iterate through each line in the data list to write it to the file.

Space Complexity:
The original code and the alternative code have the same space complexity of O(n), where n is the number of lines to be written to the file. This is because both codes need to create a list of strings that represent the lines to be written to the file.

Writing to file in Python – FAQs

What is the write() method in Python?

The write() method in Python is used to write data to a file. It takes a string argument and appends it to the end of the file’s content. If the file doesn’t exist, it creates a new file.

with open('file.txt', 'w') as file: file.write('Hello, World!')

How to write a line to a file in Python?

Use the write() method with a newline character (\n) to write a line to a file.

with open('file.txt', 'w') as file: file.write('This is a line.\n')

How to write numbers to a file in Python?

Convert numbers to strings and use the write() method to write them to a file.

with open('numbers.txt', 'w') as file:
file.write('123\n456\n789\n')

How to write a list to a file in Python?

Convert list elements to strings, join them if needed, and write to a file using the write() method.

data = ['apple', 'banana', 'cherry']
with open('fruits.txt', 'w') as file:
file.write('\n'.join(data) + '\n')

How to make a file in Python?

You create a file in Python by opening it with the ‘w’ mode in open() function. If the file doesn’t exist, Python will create it.

with open('new_file.txt', 'w') as file:
file.write('Content of the new file.')


N

nikhilaggarwal3

Writing to file in Python - GeeksforGeeks (1)

Improve

Next Article

Writing CSV files in Python

Please Login to comment...

Writing to file in Python - GeeksforGeeks (2024)

FAQs

How do you write something to a file in Python? ›

The write() method in Python is used to write data to a file. It takes a string argument and appends it to the end of the file's content. If the file doesn't exist, it creates a new file. with open('file.txt', 'w') as file: file.write('Hello, World!')

How do you write to a file immediately in Python? ›

In conclusion, the flush() function in Python ensures the immediate writing of data from the internal buffer to the file, facilitating prompt data persistence. This is particularly useful when you need to guarantee that data is saved without delay, even before closing the file.

How to keep writing to a file in Python? ›

We can keep old content while using write in python by opening the file in append mode. To open a file in append mode, we can use either 'a' or 'a+' as the access mode. The definition of these access modes are as follows: Append Only ('a'): Open the file for writing.

How to write list to file in Python? ›

The simplest solution for Python to write the list to a file is to use a file. write() method that writes all the items from the list to a file. The open() method opens the file in w mode. The list is looped through and all the items are written one by one.

Can you write an object to a file in Python? ›

Saving and Loading Objects with the Pickle Dump Python Function and Load Function. The Pickle dump() and dumps() functions are used to serialize an object. The only difference between them is that dump() writes the data to a file, while dumps() represents it as a byte object.

How do you write inputs to a file in Python? ›

To write to a file in python, you need to do two things:
  1. Use the open(filename, mode) function in the write mode (“w”).
  2. Use the file. write(text) function to actually write to the file. This function takes a string parameter to write to the file.

How to write to a file continuously in Python? ›

The writelines() Function in Python

Constantly using file. write() for every line we want to write to your file can get tricky. Hence, we can use the writelines() function. A simple way to use it is to provide a list of strings as a parameter to writelines().

How to write multiple lines to a file in Python? ›

Multi-line strings: use triple quote marks “”" or ''' create multi-line strings. Brackets – round () square and curly {} – can extend over multiple lines. Not just dicts, but also lists, tuples, sets, function calls, list comprehensions, etc.

How do you write to a file without overwriting in Python? ›

Use the append file mode, "a", in the open statement. This is what I mean: open("myfile. csv", "a") The "a" lets you add new rows at the end of the file without overwriting existing rows.

How to create a Python file? ›

You can create a new Python file by selecting New File on the VS Code Welcome page and then selecting Python file, or by navigating to File > New File (unassigned). Tip: If you already have a workspace folder open in VS Code, you can add new files or folders directly into your existing project.

How to create a text file using Python? ›

Example of how to create a file with the "w" command: #creating a text file with the command function "w" f = open("myfile. txt", "w") #This "w" command can also be used create a new file but unlike the the "x" command the "w" command will overwrite any existing file found with the same file name.

How do you write a new line to a text file in Python? ›

Open the file in append mode ('a'). Write cursor points to the end of file. Append '\n' at the end of the file using write() function. Append the given line to the file using write() function.

How do you write data to another file in Python? ›

Python File Write
  1. ❮ Previous Next ❯
  2. ExampleGet your own Python Server. Open the file "demofile2.txt" and append content to the file: f = open("demofile2.txt", "a") f.write("Now the file has more content!") ...
  3. Example. Open the file "demofile3.txt" and overwrite the content: f = open("demofile3.txt", "w") ...
  4. ❮ Previous Next ❯

How to make a text file in Python? ›

To create a file in Python, you can use the open() function with the 'a' mode such as file = open('myfile. txt', 'a') . This function opens a file for writing, creating the file if it does not exist. In this example, we're using the open() function to create a file named 'myfile.

How do you append data to a file in Python? ›

We can open the file in append or write mode, so the file pointer will point to the end of the file. Then, using the write() function, append the newline character(\n) at the end of the file, which moves the file pointer to the next line so that when the new text is inserted, it will be inserted from the new line.

How to save data in txt file in Python? ›

Saving a Text File in Python
  1. write(): Inserts the string str1 in a single line in the text file. File_object.write(str1)
  2. writelines(): For a list of string elements, each string is inserted in the text file. Used to insert multiple strings at a single time. File_object.writelines(L) for L = [str1, str2, str3]
Dec 29, 2020

Top Articles
Bien sûr, voici l'article que vous avez demandé :
Comment Transférer des Tokens d'Ethereum vers Layer 2 en Toute Simplicité
Nullreferenceexception 7 Days To Die
Koopa Wrapper 1 Point 0
Stadium Seats Near Me
PRISMA Technik 7-10 Baden-Württemberg
Sprague Brook Park Camping Reservations
Dityship
A.e.a.o.n.m.s
Brutál jó vegán torta! – Kókusz-málna-csoki trió
Ree Marie Centerfold
Athens Bucket List: 20 Best Things to Do in Athens, Greece
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Playgirl Magazine Cover Template Free
ᐅ Bosch Aero Twin A 863 S Scheibenwischer
Ibukunore
Labby Memorial Funeral Homes Leesville Obituaries
91 East Freeway Accident Today 2022
Why Is 365 Market Troy Mi On My Bank Statement
How To Level Up Roc Rlcraft
Ge-Tracker Bond
Decosmo Industrial Auctions
Icivics The Electoral Process Answer Key
Ezel Detailing
Haunted Mansion Showtimes Near Epic Theatres Of West Volusia
Dr Seuss Star Bellied Sneetches Pdf
Www.1Tamilmv.con
The Creator Showtimes Near Baxter Avenue Theatres
Perry Inhofe Mansion
What does wym mean?
Jeep Cherokee For Sale By Owner Craigslist
Life Insurance Policies | New York Life
Chicago Pd Rotten Tomatoes
"Pure Onyx" by xxoom from Patreon | Kemono
Luciipurrrr_
20+ Best Things To Do In Oceanside California
Sams La Habra Gas Price
Admissions - New York Conservatory for Dramatic Arts
ENDOCRINOLOGY-PSR in Lewes, DE for Beebe Healthcare
Trap Candy Strain Leafly
Ursula Creed Datasheet
Clausen's Car Wash
Kenner And Stevens Funeral Home
2017 Ford F550 Rear Axle Nut Torque Spec
Centimeters to Feet conversion: cm to ft calculator
John Wick: Kapitel 4 (2023)
Sams Gas Price San Angelo
Tyrone Dave Chappelle Show Gif
How Did Natalie Earnheart Lose Weight
Southern Blotting: Principle, Steps, Applications | Microbe Online
Invitation Quinceanera Espanol
Latest Posts
Article information

Author: Kimberely Baumbach CPA

Last Updated:

Views: 6397

Rating: 4 / 5 (41 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Kimberely Baumbach CPA

Birthday: 1996-01-14

Address: 8381 Boyce Course, Imeldachester, ND 74681

Phone: +3571286597580

Job: Product Banking Analyst

Hobby: Cosplaying, Inline skating, Amateur radio, Baton twirling, Mountaineering, Flying, Archery

Introduction: My name is Kimberely Baumbach CPA, I am a gorgeous, bright, charming, encouraging, zealous, lively, good person who loves writing and wants to share my knowledge and understanding with you.