In this example, you will learn to read a file line by line into a list.
To understand this example, you should have the knowledge of the following Python programming topics:
1. Example 1: Using readlines()
Let the content of the file data_file.txt
be
honda 1948 mercedes 1926 ford 1903
Source Code
with open("data_file.txt") as f: content_list = f.readlines() # print the list print(content_list) # remove new line characters content_list = [x.strip() for x in content_list] print(content_list)
Output
['honda 1948\n', 'mercedes 1926\n', 'ford 1903'] ['honda 1948', 'mercedes 1926', 'ford 1903']
readlines()
returns a list of lines from the file.
- First, open the file and read the file using
readlines()
. - If you want to remove the new lines (‘
\n
‘), you can usestrip()
.
2. Example 2: Using for loop and list comprehension
with open('data_file.txt') as f: content_list = [line for line in f] print(content_list) # removing the characters with open('data_file.txt') as f: content_list = [line.rstrip() for line in f] print(content_list)
Output
['honda 1948\n', 'mercedes 1926\n', 'ford 1903'] ['honda 1948', 'mercedes 1926', 'ford 1903']
Another way to achieve the same thing is using a for loop. In each iteration, you can read each line of f
object and store it in content_list
as shown in the example above.
Related posts:
Python Artificial Intelligence Project for Beginners - Joshua Eckroth
Intelligent Projects Using Python - Santanu Pattanayak
Python String isnumeric()
Python hasattr()
Python Function Arguments
Python Program to Create a Countdown Timer
Python Input, Output and Import
Python Program to Trim Whitespace From a String
Python str()
Python Data Analytics with Pandas, NumPy and Matplotlib - Fabio Nelli
Python List insert()
Python bytearray()
Python Program to Measure the Elapsed Time in Python
Java Program to Implement the Program Used in grep/egrep/fgrep
Python Program to Access Index of a List Using for Loop
Python Program to Find All File with .txt Extension Present Inside a Directory
Node.js vs Python for Backend Development
Python File I/O Operation
Converting between an Array and a List in Java
Python Program to Extract Extension From the File Name
Python Functions
Python Operators
Introduction to Machine Learning with Python - Andreas C.Muller & Sarah Guido
Python Keywords and Identifiers
Python Set issuperset()
Python chr()
Python Program to Split a List Into Evenly Sized Chunks
Python input()
Python Program to Represent enum
Python frozenset()
Python bool()
Python ord()