Followers

Showing posts with label Python File Handling Part-2. Show all posts
Showing posts with label Python File Handling Part-2. Show all posts

Tuesday, April 25, 2023

Python Text File Handling: Types and Operations with Examples

 

Python provides powerful built-in support for handling text files, which are files that contain human-readable text. In this article, we'll explore the different types of text files that can be handled in Python, as well as the various operations that can be performed on them.

Types of Text Files in Python

There are several types of text files that can be handled in Python. Some of the most common types are:

1. Plain Text Files

Plain text files are files that contain unformatted text, with no font or style formatting. They can be created and edited using any text editor, such as Notepad or TextEdit. In Python, plain text files are typically handled using the built-in open() function.

2. CSV Files

CSV (Comma-Separated Values) files are text files that contain tabular data, with each row separated by a newline character and each value within a row separated by a comma. They are often used to store and exchange data between applications. In Python, CSV files can be handled using the built-in csv module.

3. JSON Files

JSON (JavaScript Object Notation) files are text files that store data in a structured format using key-value pairs. They are often used for exchanging data between web applications. In Python, JSON files can be handled using the built-in json module.

4. XML Files

XML (Extensible Markup Language) files are text files that contain data in a structured format using tags, similar to HTML. They are often used for exchanging data between different systems. In Python, XML files can be handled using the built-in xml module.

Text File Operations in Python

Python provides a variety of file operations that can be performed on text files. Some of the most common operations are:

1. Opening a Text File

To open a text file in Python, we can use the built-in open() function. This function takes two arguments: the path to the file and the mode in which the file should be opened. Here's an example:

python
file = open('example.txt', 'r')

In this example, we're opening a file named example.txt in read mode ('r'). This means we can read the contents of the file, but we can't modify it.

2. Reading from a Text File

Once a text file is opened, we can read its contents using various methods. The most common method is the read() method, which reads the entire contents of the file as a single string. Here's an example:

python
file = open('example.txt', 'r') content = file.read() print(content)

In this example, we're reading the contents of the example.txt file and storing them in the content variable. We then print the contents to the console.

3. Writing to a Text File

To write to a text file in Python, we can open the file in write mode ('w') or append mode ('a') using the open() function. Write mode overwrites the contents of the file, while append mode adds new content to the end of the file. Here's an example:

python
file = open('example.txt', 'a') file.write('This is a new line\n') file.close()

In this example, we're opening the example.txt file in append mode and adding a new line of text to the end of the file. We then close the file using the close() method.

4. Closing a Text File

After we're done working with a text file in Python, it's important to close it using the `close () method. This frees up any system resources that were being used by the file. Here's an example:

python
file = open('example.txt', 'r') content = file.read() file.close()

In this example, we're opening the example.txt file in read mode, reading its contents, and then closing the file using the close() method.

5. Iterating Over Lines in a Text File

To iterate over each line in a text file, we can use a for loop in combination with the readlines() method. This method reads all the lines of a file and returns them as a list. Here's an example:

python
file = open('example.txt', 'r') lines = file.readlines() for line in lines: print(line) file.close()

In this example, we're opening the example.txt file in read mode, reading all of its lines using the readlines() method, and then iterating over each line using a for loop. We then print each line to the console.

Conclusion

Python's built-in support for text file handling makes it easy to read, write, and manipulate text files in a variety of formats. Whether you're working with plain text files, CSV files, JSON files, or XML files, Python provides a variety of operations that make it easy to manage your data. By mastering these operations, we'll be able to work more efficiently and effectively with text files in your Python programs.