3. Writing to a File

Quiz: 0/5

In Python, you can write to files using two main modes: w and a.

Mode w (Write mode):

When you open a file in write mode w, Python will create a new file if it doesn’t exist or overwrite the content of the file if it already exists.

This means if the file already has some text, it will delete everything and start fresh.

Mode a (Append mode):

When you open a file in append mode a, Python will add new content to the end of the file, without touching or deleting the existing content.

This is useful when you want to add new data to an existing file without overwriting it.

Writing methods

.write()

Example:

with open("example.txt", "w") as file:
    file.write("Hello, World!\n")
    file.write("This is a new line.")

In this case, "Hello, World!" and "This is a new line." will be written to the file example.txt.

The .write() method allows you to write a single string to a file.

It doesn’t add a newline automatically after the string, so you need to manually include \n if you want to start a new line.

.writelines():

Example:

lines = ["First line\n", "Second line\n", "Third line\n"]
with open("example.txt", "w") as file:
    file.writelines(lines)

This will write the lines "First line", "Second line", and "Third line" to the file, each on a new line.

  • The .writelines() method is used to write a list of strings to a file.
  • Unlike .write(), it doesn’t automatically add newlines, so each string in the list should have a newline (\n) if needed.

Difference between w and a

  • w (write): If you open a file in write mode w, it will overwrite any existing content in the file. This is like starting with a clean slate.

  • a (append): If you open a file in append mode a, it will add new content to the end of the file without affecting the current content.

Example to illustrate:

Using w mode (overwrite):

with open("test.txt", "w") as file:
    file.write("This is the first line.")

If test.txt already had some content, it will now only contain "This is the first line."

Using a mode (append):

with open("test.txt", "a") as file:
    file.write("\nThis is an added line.")

After this, the file test.txt will contain:

This is the first line.
This is an added line.

Hands-On Practise

Exercise: Writing and appending to a File

Objective: You will create a Python program that performs the following tasks:

  1. Create a new file called shopping_list.txt.
  2. Write a list of shopping items to the file using the w mode.
  3. Add more items to the file using the a mode.
  4. Display the contents of the file after each operation.
Output:

Quizzes: 0/5

Question 1:

What does the 'w' mode do when opening a file in Python?

  • It appends new data to the file.
  • It overwrites the existing content of the file.
  • It reads the content of the file.
  • It prevents writing to the file.

Question 2:

Which method would you use to write a single line to a file in Python?

  • .write()
  • .writelines()
  • .read()
  • .append()

Question 3:

What is the difference between 'w' and 'a' modes in Python file handling?

  • 'w' appends data, while 'a' overwrites data.
  • 'w' overwrites data, while 'a' appends data.
  • 'w' allows reading, while 'a' only allows writing.
  • 'w' is used for text files, while 'a' is used for binary files.

Question 4:

Which method in Python is used to write a list of strings to a file?

  • .write()
  • .writelines()
  • .append()
  • .readlines()

Question 5:

What happens when you open a file in 'a' mode and write to it?

  • The file is erased and new data is written.
  • The new data is appended to the existing file content.
  • The file is locked for reading.
  • The file is not modified.

Feedback

Share your thoughts about this lesson

Discussion

Please log in to create a discussion.
Previous lessonReading and writing files efficientlyNext lessonWorking with CSV and JSON files