讀取CSV資料

Time_xiaoxia發表於2020-10-12
import csv
csvfile = open('data-text.csv','rb')
reader = csv.reader(csvfile)

for row in reader:
	print row

相關文章