#1
|
|||
|
|||
csv reading
I am using this command to import a csv file
Code:
temp = [[float(val) for val in row] for row in csv.reader(file('data.csv','rUb')) ] |
|
|