Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7590061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:18:49+00:00 2026-05-30T20:18:49+00:00

I read a file which only contains one line. However, I can’t stop reading

  • 0

I read a file which only contains one line. However, I can’t stop reading the file until the loop end. i.e. the python doesn’t throw EOFError exception. what’t wrong with my code?

for x in range(5):
  try:
    line = file.readlines()
  except EOFError:
    break
  print "Line:",line

The output is:

Line: ['nice\n']
Line: []
Line: []
Line: []
Line: []
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T20:18:50+00:00Added an answer on May 30, 2026 at 8:18 pm

    readlines() reads the whole document and returns the list of lines, not just a single line.

    You probably meant to use file.readline() – but even that does not raise an error, so you have to do something else, like checking if not line.endswith("\n"): break or len(line) < 1 to detect the EOF.

    Personally I would write the same functionality something like:

    with open("filename") as f:
        for i, line in enumerate(f):
            print("Line: %s" % line)
            if i > 5 or not line:
                break
    

    Or if you want to get rid of the extra newlines, change the print statement to:

    print("Line: %s" % line.rstrip("\n"))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a file (test.txt) which contains 1234567. However when I try to read
I'd like to read an xml file on a user's machine (which can be
I need to delete a directory that contains read-only files. Which approach is better:
Say I only need to find out whether a line read from a file
I am using fscanf to read a file which has lines like Number <-whitespace->
I am trying to read a html file which is a plain page with
Based on http://alexreg.wordpress.com/2009/05/03/strongly-typed-csv-reader-in-c/ , I created a DLL which can read different file types.
I have dynamic array filled with bytes, which are read from .raw file with
I read some properties from an xml file, amongst which is a string that
I need to read a BufferedImage from file, which doesn't use DataBufferInt (as normally),

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.