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 m
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])
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=";")
Try this:
wtr = csv.writer(open ('out.csv', 'w'), delimiter=',', lineterminator='\n')
for x in arr : wtr.writerow ([x])
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)
Try this:
for i in range(len(testLabels)):
result_file = open('filePath.csv', 'a')
result_file.write("{}{}".format(testLabels[i], '\n'))