Ana Dionísio <[email protected]> writes: > Hello! > > I have a CSV file with 20 rows and 12 columns and I need to store it > as a matrix.
array=numpy.array([row for row in csv.reader(open('Cenarios.csv'))])
NB: i used "array=" as in your sample code, BUT
--
http://mail.python.org/mailman/listinfo/python-list
