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


Groups > comp.lang.python > #99215

Re: Problem to read from array

From Nathan Hilterbrand <nhilterbrand@gmail.com>
Newsgroups comp.lang.python
Subject Re: Problem to read from array
Date 2015-11-21 10:52 -0500
Message-ID <mailman.40.1448121134.2291.python-list@python.org> (permalink)
References <2141d7ae-1064-49f3-bf36-ff663fca0ffc@googlegroups.com> <n2q2bd$rf0$1@dont-email.me>

Show all headers | View raw


On 11/21/2015 10:26 AM, BartC wrote:
> On 21/11/2015 10:41, vostrushka@gmail.com wrote:
>> Hi,
>> I have a file with one parameter per line:
>> a1
>> b1
>> c1
>> a2
>> b2
>> c2
>> a3
>> b3
>> c3
>> ...
>> The parameters are lines of characters (not numbers)
>>
>> I need to load it to 2D array for further manipulations.
>> So far I managed to upload this file into 1D array:
>>
>> ParametersRaw = []
>> with open(file1) as fh:
>>      ParametersRaw = fh.readlines()
>> fh.close()
>
> I tried this code based on yours:
>
> with open("input") as fh:
>     lines=fh.readlines()
>
> rows = len(lines)//3
>
> params=[]
> index=0
>
> for row in range(rows):
>     params.append([lines[index],lines[index+1],lines[index+2]])
>     index += 3
>
> for row in range(rows):
>     print (row,":",params[row])
>
> For the exact input you gave, it produced this output:
>
> 0 : ['a1\n', 'b1\n', 'c1\n']
> 1 : ['a2\n', 'b2\n', 'c2\n']
> 2 : ['a3\n', 'b3\n', 'c3\n']
>
> Probably you'd want to get rid of those \n characters. (I don't know 
> how off-hand as I'm not often write in Python.)
>
> The last bit could also be written:
>
> for param in params:
>     print (params)
>
> but I needed the row index.
>
To get rid of the '\n' (lineend) characters:

with open(file1) as fh:
     ParametersRaw = [line.strip() for line in fh.readlines()]

or, more succinctly..

  with open(file1) as fh:
      ParametersRaw = [line.strip() for line in fh]

Comprehensions are your friend.

Nathan

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Problem to read from array vostrushka@gmail.com - 2015-11-21 02:41 -0800
  Re: Problem to read from array Peter Otten <__peter__@web.de> - 2015-11-21 12:23 +0100
  Re: Problem to read from array Laura Creighton <lac@openend.se> - 2015-11-21 15:22 +0100
  Re: Problem to read from array Laura Creighton <lac@openend.se> - 2015-11-21 16:05 +0100
  Re: Problem to read from array BartC <bc@freeuk.com> - 2015-11-21 15:26 +0000
    Re: Problem to read from array Nathan Hilterbrand <nhilterbrand@gmail.com> - 2015-11-21 10:52 -0500
      Re: Problem to read from array Crane Ugly <vostrushka@gmail.com> - 2015-11-23 12:58 -0800
        Re: Problem to read from array sohcahtoa82@gmail.com - 2015-11-23 16:44 -0800
          Re: Problem to read from array Crane Ugly <vostrushka@gmail.com> - 2015-11-24 00:56 -0800
            Re: Problem to read from array Peter Otten <__peter__@web.de> - 2015-11-24 10:31 +0100

csiph-web