Writing array to csv python (one column)

2020-03-25 04:10发布

I'm trying to write the values of an array to a .csv file in python. But when I open the file in excel, the data is shown in one row. I want to have one column where each member of the array is a row.

The array "testLabels" is of the form:

array(['deer', 'airplane', 'dog', ..., 'frog', 'cat', 'truck'], 
  dtype='<S10')

And the code I use to write to the csv is:

import csv
resultFile = open("/filepath",'wb')
wr = csv.writer(resultFile)
wr.writerows([testLabels])

Any help would be greatly appreciated.

5条回答
甜甜的少女心
2楼-- · 2020-03-25 04:35

Try this:

wtr = csv.writer(open ('out.csv', 'w'), delimiter=',', lineterminator='\n')
for x in arr : wtr.writerow ([x])
查看更多
啃猪蹄的小仙女
3楼-- · 2020-03-25 04:39

Try this:

    for i in range(len(testLabels)):
        result_file = open('filePath.csv', 'a')
        result_file.write("{}{}".format(testLabels[i], '\n'))
查看更多
Viruses.
4楼-- · 2020-03-25 04:52

You need to write each item of list to a row in the CSV file to get them into one column.

for label in testLabels:
    wr.writerows([label])
查看更多
We Are One
5楼-- · 2020-03-25 04:52

Try this:

import csv
import numpy as np
yourArray = ['deer', 'airplane', 'dog', ..., 'frog', 'cat', 'truck']
yourArray = np.array(yourArray)

with open('outputFile.csv', 'w', newline='') as csvfile:
    writer = csv.writer(csvfile, delimiter=',')
    for row in range(0,yourArray.shape[0]):
        myList = []
        myList.append(yourArray[row])
        writer.writerow(myList)
查看更多
贼婆χ
6楼-- · 2020-03-25 05:00

You should change the delimiter. CSV is Comma Separated Value, but Excel understands that a comma is ";" (yeah weird). So you have to add the option delimiter=";", like

csv.writer(myfile, delimiter=";")
查看更多
登录 后发表回答