1 import csv 2 3 #讀取csv文檔內容方法1 4 csv_file = csv.reader(open('testdata.csv','r')) 5 next(csv_file, None) #skip the headers 6 for user ...
確定! 回上一頁