Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

How to read text file from line X to line Y in Python

3 Answers

0 votes
from itertools import islice
 
x = 2
y = 4
with open('info.txt') as f:
    for line in islice(f, x - 1, y):
        print(line)
 
 
 
 
'''
run:
  
high-level, general-purpose 
 
programming language
 
python design philosophy emphasizes code readability
  
'''

 



answered Jun 23, 2020 by avibootz
edited Jun 23, 2020 by avibootz
0 votes
x = 2
y = 4
with open('info.txt') as f:
    for i, line in enumerate(f):
        if i >= x - 1 and i <= y - 1:
            print(line)


'''
run:
 
high-level, general-purpose 

programming language

python design philosophy emphasizes code readability
 
'''

 



answered Jun 23, 2020 by avibootz
0 votes
x = 2
y = 4
with open('info.txt') as f:
    line = f.readline()
    count = 1
    while line:
        if (count >= x and count <= y):
            print("Line {}: {}".format(count, line.strip()))
        line = f.readline()
        count += 1
        if (count > y): break


'''
run:
  
Line 2: high-level, general-purpose
Line 3: programming language
Line 4: python design philosophy emphasizes code readability
  
'''

 



answered Jun 23, 2020 by avibootz

Related questions

1 answer 249 views
2 answers 287 views
1 answer 265 views
2 answers 350 views
1 answer 238 views
2 answers 324 views
...