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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T01:00:47+00:00 2026-06-02T01:00:47+00:00

I usually read files like this in Python: f = open(‘filename.txt’, ‘r’) for x

  • 0

I usually read files like this in Python:

f = open('filename.txt', 'r')
for x in f:
    doStuff(x)
f.close()

However, this splits the file by newlines. I now have a file which has all of its info in one line (45,000 strings separated by commas). While a file of this size is trivial to read in using something like

f = open('filename.txt', 'r')
doStuff(f.read())
f.close()

I am curious if for a much larger file which is all in one line it would be possible to achieve a similar iteration effect as in the first code snippet but with splitting by comma instead of newline, or by any other character?

  • 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-06-02T01:00:48+00:00Added an answer on June 2, 2026 at 1:00 am

    The following function is a fairly straightforward way to do what you want:

    def file_split(f, delim=',', bufsize=1024):
        prev = ''
        while True:
            s = f.read(bufsize)
            if not s:
                break
            split = s.split(delim)
            if len(split) > 1:
                yield prev + split[0]
                prev = split[-1]
                for x in split[1:-1]:
                    yield x
            else:
                prev += s
        if prev:
            yield prev
    

    You would use it like this:

    for item in file_split(open('filename.txt')):
        doStuff(item)
    

    This should be faster than the solution that EMS linked, and will save a lot of memory over reading the entire file at once for large files.

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

Sidebar

Related Questions

I usually perform things like this in C++, but I'm using python to write
I would like to read a little more about the + that is usually
I'm trying to read a remote binary file (say, image) from internet like this:
I need to deal with super large txt input files, and I usually use
I have read in a lot of places that assembly language is not usually
I usually type too much, so read bold copy if in a hurry .
Most of the posts that I read pertaining to these utilities usually suggest using
I've read that it is bad practice, but usually harmless , to place most
Almost all of the examples in the jQuery tutorials that I've read, usually use
The tutorials, manuals and other resources I read about fork() usually only contain examples

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.