How to Loop Through File Line By Line in Python


In this example we will show how to loop through the file line by line in Python.

Source Code

f = open('myfile.txt', 'r', encoding='utf-8')
for line in f:
    print(line) 

Output:

Hello World!

Python is a programming language that lets you work more quickly and integrate your systems more effectively.

I love Python!
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments