How to read a text file line by line in Python

2 Answers

0 votes
with open('info.txt') as f:
   line = f.readline()
   count = 1
   while line:
       print("Line {}: {}".format(count, line.strip()))
       line = f.readline()
       count += 1


'''
run:
 
Line 1: Python is an interpreted
Line 2: high-level, general-purpose
Line 3: programming language
Line 4: python design philosophy emphasizes code readability
Line 5: with its notable use of significant whitespace
 
'''

 



answered Jun 23, 2020 by avibootz
0 votes
with open('info.txt') as f:
    for count, line in enumerate(f):
        print("Line {}: {}".format(count + 1, line))


'''
run:
 
Line 1: Python is an interpreted

Line 2: high-level, general-purpose

Line 3: programming language

Line 4: python design philosophy emphasizes code readability

Line 5: with its notable use of significant whitespace
 
'''

 



answered Jun 23, 2020 by avibootz

Related questions

5 answers 391 views
3 answers 296 views
1 answer 179 views
2 answers 228 views
1 answer 206 views
2 answers 295 views
...