Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #31761 > unrolled thread

Re: Python does not take up available physical memory

Started byChris Angelico <rosuav@gmail.com>
First post2012-10-20 06:18 +1100
Last post2012-10-20 06:18 +1100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Python does not take up available physical memory Chris Angelico <rosuav@gmail.com> - 2012-10-20 06:18 +1100

#31761 — Re: Python does not take up available physical memory

FromChris Angelico <rosuav@gmail.com>
Date2012-10-20 06:18 +1100
SubjectRe: Python does not take up available physical memory
Message-ID<mailman.2528.1350674338.27098.python-list@python.org>
On Sat, Oct 20, 2012 at 4:08 AM, Pradipto Banerjee
<pradipto.banerjee@adainvestments.com> wrote:
> I am trying to read a file into memory. The size of the file is around 1 GB.
> I have a 3GB memory PC and the Windows Task Manager shows  2.3 GB available
> physical memory when I was trying to read the file. I tried to read the file
> as follows:
>
>
>
>>>> fdata = open(filename, ‘r’).read()

Is this Python 2 or Python 3? Just throwing a random possibility out
there, could it be that reading it in and converting it to Unicode
text requires more memory than you have?

My recommendation: Unless you actually need to search the whole file
as a single string, iterate over the file instead:

for line in open(filename):
    # do something with line

Your loop will execute once for each line in the file.

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web