How to deal with python 32bit memory error

2012-07-24 Thread Sammy Danso
Hello Experts, I am having a 'memory error', which suggest that I have run out of memory, but I am not sure this is the case as I have considerable amount of memory unused on my computer. A little search suggest this is a limitation of python 32 and an option is to have a 64bit. I however hav

Re: Help with how to combine two csv files

2012-05-10 Thread Sammy Danso
    matchedlist.append(entry)     --- On Wed, 5/9/12, Jean-Michel Pichavant wrote: From: Jean-Michel Pichavant Subject: Re: Help with how to combine two csv files To: "Sammy Danso" Cc: python-list@python.org Date: Wednesday, May 9, 2012, 11:23 AM Sammy Danso wrote: >

Help with how to combine two csv files

2012-04-29 Thread Sammy Danso
Hello Experts, I am new to python and I have been trying to merge two csv files, and upon several hours of unsuccessful attempts, I have decided to seek for help.   the format of the file is as follows. file A has  columns a, b, c and values 1,2,3 for several rows. File B also has columns d,

Re: iterating over list with one mising value

2012-02-07 Thread Sammy Danso
;, 1, 'difficulty', 1, 'cord', 1, 'consecutive', 1, 'colour', 1, 'cleared', 1, 'child', 1, 'checkups', 1, 'came', 1, 'but', 2, 'breathing', 2, 'breath', 1, 'blood', 2, 'blee

iterating over list with one mising value

2012-02-07 Thread Sammy Danso
Hello experts, I am having trouble accessing the content of my list. my list content has 2-pair value with the exception of one which has single value. here is an example  ['a', 1, 'b', 1, 'c', 3, 'd']   I am unable to iterate through list to access invidual value pairs   I get an error message s