Answers for "turn csv into array in numpy"

2

python read csv into array

import csv 

items = []

with open('file.csv') as csvfile:    
	csvReader = csv.reader(csvfile)    
	for row in csvReader:        
		items.append(row[0])        
print(items)
Posted by: Guest on March-23-2020
3

numpy to csv

import numpy as np
x = np.arange(0.0,5.0,1.0)
np.savetxt('test.csv', x, delimiter=',')
Posted by: Guest on September-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language