2019年1月6日 星期日

[python, csv] 最簡單的方法把 字串 list 存成 csv 檔案

  1. [list2csv] How to conver a string list to a csv file


import numpy as np

list_file = ['a', 'b']
array_file = np.array(list_file)
np.savetxt('foo.csv', array_file, delimiter=',', fmt="%s")