Read CSV file into an array

O

oyekomova

I would like to know how to read a CSV file with a header ( n columns
of float data) into an array without the header row.
 
R

Robert Kern

oyekomova said:
I would like to know how to read a CSV file with a header ( n columns
of float data) into an array without the header row.

Did you read our responses from the last time you asked this question?

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco
 
T

Tobiah

oyekomova said:
I would like to know how to read a CSV file with a header ( n columns
of float data) into an array without the header row.
import csv

l = []
for line in csv.reader(open("my.csv").readlines()[1:]):
l.append(line)

Which really gets you a list of lists.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top