Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to read numbers from file into two dimensional array.

File contents:

  • line containing w, h
  • h lines containing w integers separated with space

For example:

4 3
1 2 3 4
2 3 4 5
6 7 8 9
share|improve this question
are you stuck somewhere specific? have a look at docs.python.org/tutorial/… (I'm not the one downvoting here) – Jacob Jul 5 '11 at 13:44
but there is example how to read file line by line, not as numbers – Miro Jul 5 '11 at 13:45
Your question misses both a clear description of the file content and of the desired output. – mac Jul 5 '11 at 13:46
@Miro getting the line is the step, than you need to manipulate the string with something like split() docs.python.org/library/stdtypes.html#string-methods You said you are new to python so I guess you want to learn something, but you are not going to learn alot if you just use an answer here. Also, this looks like homework. – Jacob Jul 5 '11 at 13:48
1  
but in c++ u read number by number and there u split string into numbers, so i've had no idea where to start – Miro Jul 5 '11 at 14:12
show 2 more comments

3 Answers

up vote 22 down vote accepted

Assuming you don't have extraneous whitespace:

with open('file') as f:
    w, h = [int(x) for x in f.readline().split()] # read first line
    array = []
    for line in f: # read rest of lines
        array.append([int(x) for x in line.split()])

You could condense the last for loop into a nested list comprehension:

with open('file') as f:
    w, h = [int(x) for x in f.readline().split()]
    array = [[int(x) for x in line.split()] for line in f]
share|improve this answer
1  
aren't values stored as strings then ? – ascobol Jul 5 '11 at 13:53
Yes, I suppose I should update my answer. – zeekay Jul 5 '11 at 13:57
I think this is an okay solution, but I'm always hesitant to iterate and append... IMO it's usually more succinct and easier to read to work with list generators, where you can do both in a single operation and without a flow-control structure like a for loop. – machine yearning Jul 5 '11 at 14:29
I prefer list comprehensions as well, up until they become huge nested monstrosities. – zeekay Jul 5 '11 at 14:36
1  
+1 : This is an excellent answer and your skillful use of both readline and line in f earns my highest regards. Cheers. – machine yearning Jul 6 '11 at 2:51

To me this kind of seemingly simple problem is what Python is all about. Especially if you're coming from a language like C++, where simple text parsing can be a pain in the butt, you'll really appreciate the functionally unit-wise solution that python can give you. I'd keep it really simple with a couple of built-in functions and some generator expressions.

You'll need open(name, mode), myfile.readlines(), mystring.split(), int(myval), and then you'll probably want to use a couple of generators to put them all together in a pythonic way.

# This opens a handle to your file, in 'r' read mode
file_handle = open('mynumbers.txt', 'r')
# Read in all the lines of your file into a list of lines
lines_list = file_handle.readlines()
# Extract dimensions from first line. Cast values to integers from strings.
cols, rows = (int(val) for val in lines_list[0].split())
# Do a double-nested list comprehension to get the rest of the data into your matrix
my_data = [[int(val) for val in line.split()] for line in lines_list[1:]]

Look up generator expressions here. They can really simplify your code into discrete functional units! Imagine doing the same thing in 4 lines in C++... It would be a monster. Especially the list generators, when I was I C++ guy I always wished I had something like that, and I'd often end up building custom functions to construct each kind of array I wanted.

share|improve this answer
I don't think this works. cols, rows = (int(val) for val in '4 3\n') doesn't do what you want. Same for [int(val) for val in line] because line will be something like '1 2 3 4\n' – Jason R. Coombs Jul 5 '11 at 13:57
@Jason: Yeah sorry there were a couple of errors in my original code, but the gist was right. Corrected above. I guess that's what iterative development is for! :) – machine yearning Jul 5 '11 at 13:59

Not sure why do you need w,h. If these values are actually required and mean that only specified number of rows and cols should be read than you can try the following:

output = []
with open(r'c:\file.txt', 'r') as f:
    w, h  = map(int, f.readline().split())
    tmp = []
    for i, line in enumerate(f):
        if i == h:
            break
        tmp.append(map(int, line.split()[:w]))
    output.append(tmp)
share|improve this answer
Interesting approach to include the header data as well, I didn't even think of that. +1 for completeness... but it's a bit lengthy / hard to read :) – machine yearning Jul 5 '11 at 14:22
Thanx) I have created extended solution that iterates line by line and creates list of list for all occurrences of w,h. However the best answer is already selected))) – Artsiom Rudzenka Jul 5 '11 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.