最常用的一種方法,利用pandas包
import pandas aspd#任意的多組列表
a = [1,2,3
]b = [4,5,6
]
#字典中的key值即為csv中列名
dataframe = pd.dataframe()
#將dataframe儲存為csv,index表示是否顯示行名,
default=true
dataframe.to_csv(
"test.csv
",index=false,sep='
,')
同樣pandas也提供簡單的讀csv方法
import pandas aspddata = pd.read_csv('
test.csv
')
會得到乙個dataframe型別的data,不熟悉處理方法可以參考pandas十分鐘入門
另一種方法用csv包,一行一行寫入
import csv#python2可以用file替代open
with open(
"test.csv
","w
") as
csvfile:
writer =csv.writer(csvfile)
#先寫入columns_name
writer.writerow([
"index
","a_name
","b_name"])
#寫入多行用writerows
writer.writerows([[
0,1,3],[1,2,3],[2,3,4]])
index a_name b_name013123
234
讀取csv檔案用reader
import csvwith open(
"test.csv
","r
") as
csvfile:
reader =csv.reader(csvfile)
#這裡不需要readlines
for line in
reader:
print line
以上。**自小站:
python使用csv寫入csv檔案
沒什麼好說的,直接上 吧 with open file.csv w encoding utf 8 newline as csvfile writer csv.writer csvfile 首先是表頭 writer.writerow id name gender birthday rating 然後是...
python讀取 寫入csv檔案
總是記不住怎麼讀取csv檔案,每次都是上網查,寫個部落格記錄下來看看會不會記得更清楚。個人比較喜歡用pandas的read csv函式來讀取csv檔案 import pandas as pd train data pd.read csv data train.csv 讀取後的資料是dataframe...
python寫入檔案到CSV
編碼問題!使用csv模組時,寫入中文在python中是預設unicode編碼,寫入時csv會出錯,寫不進去資料。import csv with open review.csv ab as f fieldnames comment user time writer csv.dictwriter f,f...