ItSolutionStuff.com

How to Read Text File Line by Line in Python?

By Hardik Savani β€’ October 30, 2023
Python

Hey Friends,

In this guide, we are going to learn python read text file line by line. you will learn python read text file line by line and store in array. If you have a question about python read text file line by line into string then I will give a simple example with a solution. letÒ€ℒs discuss about how to read text file line by line in python.

I will give you two ways to read text file line by line using readlines() and using for loop. You will be able to get the fastest way to read files line by line in python.

Without any further ado, let's see the below code examples one by one.

You can use these examples with python3 (Python 3) version.

Example 1: using readlines()

main.py

# Python read text file using readlines()
with open('readme.txt') as f:
    lines = f.readlines()
  
print(lines)

Output:

['Hi ItSolutionstuff.com!\n', 'This is body\n', 'Thank you']

Example 2: using For Loop(Large File)

main.py

# Python read text file using for loop
with open('readme.txt') as f:
    for line in f:
        print(line.rstrip())

Output:

Hi ItSolutionstuff.com!
This is body
Thank you

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Append Text or Lines to a Text File in Python?

Read Now β†’
β˜…

Python Generate Text File from List Example

Read Now β†’
β˜…

Python Create Text File If Not Exists Example

Read Now β†’
β˜…

Python Create Text File in Specific Directory Example

Read Now β†’
β˜…

How to Create Multiline Text File in Python?

Read Now β†’
β˜…

Python Create an Empty Text File Example

Read Now β†’
β˜…

How to Create Text File in Python?

Read Now β†’
β˜…

How to Get Max Value from Python List?

Read Now β†’
β˜…

How to Convert List to Lowercase in Python?

Read Now β†’
β˜…

Python Split String into List of Characters Example

Read Now β†’
β˜…

How to Remove Duplicate Values from List in Python?

Read Now β†’
β˜…

How to Get Current Hour in Python?

Read Now β†’