python讀取csv文件的某一列或某幾列

python讀取csv文件的某一列或某幾列   import csv import pandas as pd with open('D:\Data\新建文件夾\list3.2.csv','r') as csvfile: reader = csv.reader(csvfile) column1 = [row[1]for row in reader] print(column1
相關文章
相關標籤/搜索