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 7436139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:11:29+00:00 2026-05-29T10:11:29+00:00

Possible Duplicate: Python: How to read huge text file into memory To process a

  • 0

Possible Duplicate:
Python: How to read huge text file into memory

To process a large text file(1G+) line by line , random access by any line number is desired, most importantly, without loading the whole file content into RAM. Is there a python library to do that?

It is beneficial when analyzing a large log file, read only is enough.

If there is no such standard library, I have to seek an alternative method: Find a set of function/class that can return the N-th line of sub-string from a big string-like object, so that I can mmap(yes, I mean memory-mapped file object) the file to that object then do line-based processing.

Thank you.

PS: A log file is almost sure to have variable line length.

  • 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-29T10:11:30+00:00Added an answer on May 29, 2026 at 10:11 am

    I think that something like below might work, since the file object‘s method readline() reads one line at a time. If the lines are of arbitrary length, you need to index the positions like follows.

    lines = [0]
    with open("testmat.txt") as f:
        while f.readline():
            lines.append(f.tell())
        # now you can read an arbitrary line:
        f.seek(lines[1235])
        line = f.readline()
    

    If the lines were of same length, you could just do f.seek(linenumber*linelenght)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How many Python classes should I put in one file? Coming from
Possible Duplicate: True random number generator I have worked with random functions in python,ruby,
Possible Duplicate: Process escape sequences in a string in Python If I get this
Possible Duplicate: python: how to encrypt a file? I'm trying to make application that
Possible Duplicate: python random string generation with upper case letters and digits How do
Possible Duplicate: comparing contents of two files using python I have a file name
Possible Duplicate: Python package structure Hello, I'm looking to import a python file that
Possible Duplicate: Python urllib2 Progress Hook I have a script which uploads a file
Possible Duplicate: Read/Write Python Closures In the following function, the internal function does not
Possible Duplicate: Java Python Integration I have a large existing codebase written in 100%

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.