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
|
I'd like to read numbers from file into two dimensional array. File contents:
For example:
|
|||||||||||||
|
|
Assuming you don't have extraneous whitespace:
You could condense the last for loop into a nested list comprehension:
|
|||||||||||||||
|
|
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
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. |
|||||
|
|
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:
|
|||||
|