VOOZH about

URL: https://www.geeksforgeeks.org/python/python-append-to-a-file/

⇱ Python append to a file - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python append to a file

Last Updated : 12 Jul, 2025

While reading or writing to a file, access mode governs 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. The definition of these access modes is as follows:

  • Append Only (β€˜a’): Open the file for writing.
  • Append and Read (β€˜a+’): Open the file for reading and writing.

These modes are ideal when you want to preserve existing content while adding more. Let's look at some examples:

Example 1: Append vs write mode.

Output:

Output of Readlines after appending
This is Delhi
This is Paris
This is LondonToday

Output of Readlines after writing
Tomorrow

Explanation:

  • Using "w" replaces the file content entirely.
  • Using "a" preserves the existing content and appends new data to the end.
  • This demonstrates how "a" and "w" behave differently.

Example 2:  Append from a New Line

In the above example of file handling, it can be seen that the data is not appended from the new line. This can be done by writing the newline '\n' character to the file. 

Output:

Output of Readlines after appending
This is Delhi
This is Paris
This is London
TodayTomorrow

Explanation:

  • \n ensures "Today" starts on a new line.
  • Without \n, "Tomorrow" continues right after "Today".

Note:β€˜\n’ is treated as a special character of two bytes.

Example 3:  Using With statement  in Python

with statement 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.

Output:

Hello
This is Delhi
This is Paris
This is London
Today

Explanation:

  • The with block ensures file1.close() is called automatically.
  • It’s a best practice for file handling to avoid resource leaks.

Note: To know more about with statement click here.

Example 4: Appending File Content Using shutil

This approach uses the shutil.copyfileobj() method to append the contents of another file (source_file) to 'file.txt'. This can be useful if you want to append the contents of one file to another without having to read the contents into memory first.

Explanation:

  • This is useful for copying content from large files efficiently.
  • Works in binary mode to preserve file format.

Related article: File Handling in Python

Comment
Article Tags: