Blog

Blog

All you Need to Know About File Handling in Python

All you Need to Know About File Handling in Python

YouTube Display Ad 3 page 0001 18

File Handling in Python

File handling in Python is essential. That’s why the programming language has several functions and built-in modules for handling files.

person using file handling in python for work at a coffee shop

Python offers programmers six access modes to files, and in this article, we’ll show you the code needed to create, read, close, and write files in Python. You’ll also learn about the various file methods every Python programmer needs to be aware of.

What are Python files?

Files are data or information that exist in the computer’s storage devices. These units of information are used to permanently keep data on a hard disk. By using files, we can keep data for future use.

As a computer user, you certainly know about music files, video files, and text files. Well, Python allows you to manipulate these files.

What is file handling in Python?

Having files is not enough — we need to be able to manipulate them either by opening, closing, writing, or deleting them.

File handling in Python is the process of using Python to carry out one of six operations on files:

  1. Read Only
  2. Read and Write
  3. Write Only
  4. Write and Read
  5. Append Only
  6. Append and Read

In this article, we’ll show you how to manipulate files using Python file-handling methods.

How to Use File Handling in Python

In this section, we’ll show you how to use Python to carry out several operations on a file.

How to Open a File in Python

Python has made opening files quite straightforward because the language has a built-in open function. Reading and writing files is also quite easy in Python. However, before starting any of that, you must first open the files in the right mode. There are three modes available, namely, read, write, or append.

  • Read, which is written as “r” in Python, allows you to read the file but doesn’t let you edit or delete any content.
  • Write, denoted by “w”, means that if the file exists, all content is deleted before it’s opened to write.
  • Append, “a”, opens the file in append mode.

When used, open returns a handle and is instrumental in reading and modifying files. Aside from the three modes mentioned earlier, we can also use the open function to open the file in text or binary modes.

Text mode is the default way files are read and shows strings. Binary, on the other hand, is in bytes and, as such, can only be read by the computer. It’s used for opening non-text files like pictures or program files.

The code snippet shows the different modes of opening files in Python.

b = open ("demo.txt") #also-the-same-as-opening-a-file-for-reading-or-opening-a-file-in-text-mode
b = open("demo.txt", 'w') #tells-python-to-write-in-text -mode
b = open("img.demo", r+b) #read-and-write-the-file-in-binary-mode

It’s a Python best practice to specify the encoding type of your file. This is so because the code might behave differently in different platforms unless the encoding type is specified.

How to Close a File in Python

You should close a file after you’ve completed whatever actions you want. Closing a file in Python is as easy as closing it because Python unsurprisingly offers the close function.

Here’s a code module of how it’s done.

b.close()

Although opening and closing a file in Python is simple, there are some things you should keep in mind.

  1. Python could crash if you exceed the limit of the number of files opened at a time.
  2. Don’t open files that are not useful or usable because this will just make you waste computer memory.
  3. You should close a file after use to reduce the chances of corruption or data loss.

Furthermore, use the try finally block of code to prevent losing your work. If you don’t use try finally, an exception occurring while performing an operation with the file can cause the code to exit without closing the file.

This code snippet shows how to use the try finally block.

try:
 b = open("demo.txt", encoding = 'utf-8')
finally:
 b.close()
	

By using this block, the file will close properly even if some exception causes an interruption to the program flow.

Another way of closing a file in Python is by using the with statement. By using this method, we don’t even need to use the close statement.

with open("demo.txt", encoding = 'utf-8') as b:

We recommend this method because it ensures the file closes when the block within the with statement is done.

Python File Handling in Action

In this section, we’ll show you file handling in Python in action. We’ll create a file, open the file, write some random text into it, and pass the file object to the print function.

First, we create the file. To create the file, we’ll use the open() method with an appropriate parameter.

The x parameter will create a file and return an error if that file already exists. The a parameter will create a file if the specified file is non-existent, and the w parameter will create a file as well, as long as it doesn’t already exist.

As an example, let’s use w to create a file called “demo.txt”.

b = open("demo.txt", 'w')

Let’s now write into this new file and close it.

b = open("demo.txt", 'w')
b.write('This\n')
b.write('is\n')
b.write('a\n')
b.write('Learning\n')
print("Sample", file=b)
b.close()

The code above has created a file and written into it. Let’s now read the new file. If correct, it should give us the output “This is a Learning Sample.”

b = open('demo.txt')
>>> s = b.read()
>>> print(s)

The output is shown below.

file handling in python, output

Let’s consider another use case of file handling in Python.

We’ll write to an existing file in this example.

b = open("demo.txt", "a")
b.write("We have added more content to the file")
b.close()


b = open("demo.txt", "r")
print(b.read())

The result of this code module is shown below.

file handling in python, output

In our last example, we’ll delete a file.

To delete a file, though, we have to first import the OS module and run the os.remove() function here’s the code module for that.

import os
os.remove("demo.txt")

Getting Started with File Handling in Python

In this post, you’ve learned how to create, write, read, delete, and close a file using basic Python commands. Now, it’s time to start practicing. Soon, you’ll be an expert at handling files in Python.

Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare

Subscribe to Newsletter

Stay ahead of the rapidly evolving world of technology with our news letters. Subscribe now!