Answers for "export array to csv python"

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
8

save numpy array to csv

import pandas as pd 
pd.DataFrame(np_array).to_csv("path/to/file.csv")
Posted by: Guest on May-31-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