File Handling In Python

Python is the most popular language in the world. This tutorial is about file handling in Python and how to work with files. In this tutorial, I've covered teh following topics:
  1. What is a file?
  2. What is file handling in Python?
  3. Types of files
  4. Handling operation on files
  5. Python file methods
  6. How to open files in Python
  7. How to read files in Python
  8. How to write files in Python
  9. How to append files in Python
If you're new to Python, please go through the below articles. 
Let's explore each and every one, one by one.
 

What is a file?

 
It is a container of user information and stores data permanently. It is  is located on the computer's hard drive, which is non-volatile memory in nature.
 

What is file handling in Python?

 
Python provides inbuilt functionaly to work with files including open files, read and write files, and manipulate files. The process of working with files is called file handling.
 
File handling concepts of Python is easy to learn and understand. Each and every line of a file is terminated with a special character which is called End of Line (EOL) like “,","-","\n" and so on.
 

Types of files in Python

 
These are the two types of files in Python we will focus in this tutorial.
  1. Text file
  2. Binary file 
Text file
 
Text files contains plain text and does not contains encoded data and can be opened in any text editor. Text files are stored in a human-readable format (usually ASCII).
 
Example
 
txt, rtf, csv, tsv, js, java,c, html, xml, json, css etc.
 
Binary files
 
It is a special type of file which is used by computer system in the form of computer-readable form, not human readable. The content of binary files are 0s and 1s that made instructions read by the computers. All executable programs are stored in binary files. Binary files are very smaller that a text files.
 
In this article we will see only File Operation on Text Files.
 

Pythin file handling operations on text files

 
The 6 common operations we usually perform on text files are the following: 
  1. Open a text file
  2. Read a text file
  3. Write to a text file
  4. Close a text file
  5. Rename a text file
  6. Delete a text file
Example
 
Working with a file in Python is no different than we use a physical file or a diary in our daily lives. First, we grab the file from its location, open the file, read or write to it or remove something, and then we close it. Same concept applies to digital files.
 

Open a file in Python

 
Python has an in-built function called open () to open a text file in Python. 
 
Syntax
 
openfile_object = open(fiename, mode)
 
Note: 
 
The filename is the location of the fiel or the name of file (with extension) that we want to open. 
 
A file can be opended for a specific operation or operations that is managed by using file modes. Python provides different types of modes. They are as given below.
  • ‘r' – Read Mode: This mode is used for read data from the files.
  • ‘w' – Write Mode: This mode is used for write data into the file or modify it. Write mode always overwrites the data into the files.
  • ‘a' – Append Mode: This mode is used to append data to the file. Append mode will always append the data into the EOF (End of File).
  • ‘r+' – Read or Write Mode: This mode is used to read or write the data from the same file.
  • ‘a+' – Append or Read Mode: This mode is used to read data from the file or append the data into the same file.
Let’s start,
 
Step 1. First, let's create a sample text file with the name of “PythonText.txt” as shown below. You can create the text file in Notepad and save it. 
 
File Handling in Python
Listing 1.
 
Step 2. Create a python file with name “test.py” in your python editor or any IDE you're using to write Python programs.
 
Step 3. Open text file (PythonText.txt) with read-only mode (r).
 
Python provides 3 function to read the content of the file. They are as given below.
  1. Read (): This function reads whole content of the file.
  2. Read(size): This function reads specific number of sizes starting from the files.
  3. Readline (): This function reads a single line from the file with newline at the end
  4. Readlines (): This function returns a list containing all the lines in the file.
  5. Read(): This function is used to read whole file at a time.
Let's explore one by one.
 
Read ()
 
This function reads whole content of the file.
Code
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","r")     
  2. print(read_file.read())       
Here, read () function reads whole file content and print command prints it.
 
Output
 
File Handling in Python 
Listing 2 
 
If we want to print specific number of characters from the file then use below code.
 

Read (size)

 
This function reads specific number of sizes from the beginning of the file.
 
Syntax
 
read (number of characters)
 
Code
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","r")     
  2. print(read_file.read(22))           
Output
File Handling In Python
Listing 3.

Readline ()

 
This function reads a single line from the file with newline at the end.
 
Code 
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","r")     
  2. print(read_file.readline())     
Output
 
File Handling In Python
Listing 4. 

Readlines ()

 
This function returns a list containing all the lines in the file.
 
Syntax
 
readlines()
 
Code
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","r")     
  2. print(read_file.readlines())       
Output
 
File Handling in Python 
Listing 5.
 

How to read specific row form the files

 
Code
  1. line_number = eval (input("Enter number of line for read: "))    
  2. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","r")     
  3. start_line=1      
  4. for file_lines in read_file:    
  5.     if start_line==line_number:    
  6.         print(file_lines)    
  7.         break    
  8.     else:    
  9.         start_line =start_line + 1    
If user enter line number 1.
 
Output
 
File Handling In Python
Listing 6.
 

How to write text file in Python

 
There are 2 ways to write text to file in Python.
 
Write single line to text file in Python
 
You can create a new file or wtite to an existing file. The write operations are controlled by the write file mode. If you want to create and write to a new file, with “w” (open) mode. The “w” mode will delete any previous existing file content and create a new file to write. 
 
Code
  1. line =input("Enter text for write in the file:  ")    
  2. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","w")    
  3. # write a line to output file    
  4. read_file.write(line)    
  5. read_file.write("\n")    
  6. read_file.close()     
Before execute the command, you can see in our file that already contains some text.
 
File Handling In Python
Listing 7.
 
After executing the code.

File Handling in Python
 
As you can see, we have multiple lines on the previous file. But after execiting the code, old content is deleted and new content is written to the file. See our new file's content:
 
Output
 
File Handling In Python
Listing 8.
 

Write multiple lines in a text file 

 
Code
  1. txtList = ["One-1""Two-2""Three-3""Four-4""Five-5"]     
Now write this value into the existing file (PythonText.Text). 
 
Open the file with append mode and use the following code.
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","a")    
  2. # write a line to output file    
  3. txtList = ["One-1""Two-2""Three-3""Four-4""Five-5"]    
  4. for line in txtList:    
  5.   # write line to output file    
  6.   read_file.write(line)    
  7.   read_file.write("\n")    
  8. read_file.close()     
Output 
 
File Handling In Python
Listing 9.
 

Append to File in Python

 
To append a file, we must open file in ‘a+’ mode so that we will have access to both the append as well as write modes.
 
Example 1
 
Code
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","a")    
Here I have opened file in the a+ mode that means append and write mode.
 
Code
  1. read_file= open("E:\AmitTutorial\Python\Filehandling\PythonText.txt","a+")     
  2. read_file.write("Six-6")    
  3. read_file.write("\n")    
  4. read_file.close()    
Output
 
File Handling In Python
Listing 10.
 

File Rename in Python

 
Python provides an “os” module, which contains some in-built methods for performing other file operations.
 
rename()
 
This function is used for rename a file.
 
This rename() method accepts two arguments. The first argument is the original file with its location and the second is the new file with its location.
 
Syntax
 
os.rename(current_file_name, new_file_name)
 
example
  1. import os    
  2. os.rename("E:\AmitTutorial\Python\Filehandling\PythonText.txt""E:\AmitTutorial\Python\Filehandling\PythonTextfile.txt")     
Output
 
File Handling In Python
Listing 11.
 
In this article we learned file operations on text files. In my next article, I will cover file handling operations on binary files.
 
I hope you liked this article.


Similar Articles